mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
net/igmp-proxy: small fix for service status after PHP 7.1 compat
This commit is contained in:
parent
44b8445e14
commit
ce7e4e0613
2 changed files with 2 additions and 3 deletions
|
|
@ -1,6 +1,5 @@
|
|||
PLUGIN_NAME= igmp-proxy
|
||||
PLUGIN_VERSION= 1.1
|
||||
PLUGIN_REVISION= 1
|
||||
PLUGIN_VERSION= 1.2
|
||||
PLUGIN_DEPENDS= igmpproxy
|
||||
PLUGIN_COMMENT= IGMP-Proxy Service
|
||||
PLUGIN_MAINTAINER= franco@opnsense.org
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ function igmpproxy_enabled()
|
|||
{
|
||||
global $config;
|
||||
|
||||
return isset($config['igmpproxy']['igmpentry']);
|
||||
return !empty($config['igmpproxy']['igmpentry']);
|
||||
}
|
||||
|
||||
function igmpproxy_services()
|
||||
|
|
|
|||
Loading…
Reference in a new issue