diff options
author | jim-p <jim@pingle.org> | 2010-02-15 18:23:10 -0500 |
---|---|---|
committer | jim-p <jim@pingle.org> | 2010-02-15 18:23:10 -0500 |
commit | e1135f7bc689d6be552382c21e581d4a63409cae (patch) | |
tree | 67bf7034309a3cea097ce65ebba4f24c64794a9c /usr/local/www | |
parent | a6efee267f54eabe0ba51cfc0dab43e92a141e61 (diff) | |
download | pfsense-e1135f7bc689d6be552382c21e581d4a63409cae.zip pfsense-e1135f7bc689d6be552382c21e581d4a63409cae.tar.gz |
Change variable name to avoid clobbering one by the same name in the Dashboard. Fixes all kinds of fun Dashboard issues. Any widget directly after the Services Status one would mess up in some way.
Diffstat (limited to 'usr/local/www')
-rw-r--r-- | usr/local/www/widgets/widgets/services_status.widget.php | 86 |
1 files changed, 43 insertions, 43 deletions
diff --git a/usr/local/www/widgets/widgets/services_status.widget.php b/usr/local/www/widgets/widgets/services_status.widget.php index a7a88f8..ec20421 100644 --- a/usr/local/www/widgets/widgets/services_status.widget.php +++ b/usr/local/www/widgets/widgets/services_status.widget.php @@ -54,23 +54,23 @@ $services = $config['installedpackages']['service']; * */ if(isset($config['dnsmasq']['enable'])) { - $pconfig['name'] = "dnsmasq"; - $pconfig['description'] = "DNS Forwarder"; - $services[] = $pconfig; - unset($pconfig); + $sconfig['name'] = "dnsmasq"; + $sconfig['description'] = "DNS Forwarder"; + $services[] = $sconfig; + unset($sconfig); } -$pconfig['name'] = "ntpd"; -$pconfig['description'] = "NTP clock sync"; -$services[] = $pconfig; -unset($pconfig); +$sconfig['name'] = "ntpd"; +$sconfig['description'] = "NTP clock sync"; +$services[] = $sconfig; +unset($sconfig); if(isset($config['captiveportal']['enable'])) { - $pconfig['name'] = "lighttpd"; - $pconfig['description'] = "Captive Portal"; - $services[] = $pconfig; - $pconfig = ""; - unset($pconfig); + $sconfig['name'] = "lighttpd"; + $sconfig['description'] = "Captive Portal"; + $services[] = $sconfig; + $sconfig = ""; + unset($sconfig); } $iflist = array(); @@ -87,45 +87,45 @@ foreach($iflist as $if) { } if($show_dhcprelay == true) { - $pconfig['name'] = "dhcrelay"; - $pconfig['description'] = "DHCP Relay"; - $services[] = $pconfig; - unset($pconfig); + $sconfig['name'] = "dhcrelay"; + $sconfig['description'] = "DHCP Relay"; + $services[] = $sconfig; + unset($sconfig); } if(is_dhcp_server_enabled()) { - $pconfig['name'] = "dhcpd"; - $pconfig['description'] = "DHCP Service"; - $services[] = $pconfig; - unset($pconfig); + $sconfig['name'] = "dhcpd"; + $sconfig['description'] = "DHCP Service"; + $services[] = $sconfig; + unset($sconfig); } if(isset($config['snmpd']['enable'])) { - $pconfig['name'] = "bsnmpd"; - $pconfig['description'] = "SNMP Service"; - $services[] = $pconfig; - unset($pconfig); + $sconfig['name'] = "bsnmpd"; + $sconfig['description'] = "SNMP Service"; + $services[] = $sconfig; + unset($sconfig); } if (count($config['igmpproxy']['igmpentry']) > 0) { - $pconfig['name'] = "igmpproxy"; - $pconfig['descritption'] = "IGMP proxy"; - $services[] = $pconfig; - unset($pconfig); + $sconfig['name'] = "igmpproxy"; + $sconfig['descritption'] = "IGMP proxy"; + $services[] = $sconfig; + unset($sconfig); } if($config['installedpackages']['miniupnpd']['config'][0]['enable']) { - $pconfig['name'] = "miniupnpd"; - $pconfig['description'] = gettext("UPnP Service"); - $services[] = $pconfig; - unset($pconfig); + $sconfig['name'] = "miniupnpd"; + $sconfig['description'] = gettext("UPnP Service"); + $services[] = $sconfig; + unset($sconfig); } if (isset($config['ipsec']['enable'])) { - $pconfig['name'] = "racoon"; - $pconfig['description'] = gettext("IPsec VPN"); - $services[] = $pconfig; - unset($pconfig); + $sconfig['name'] = "racoon"; + $sconfig['description'] = gettext("IPsec VPN"); + $services[] = $sconfig; + unset($sconfig); } foreach (array('server', 'client') as $mode) { @@ -133,12 +133,12 @@ foreach (array('server', 'client') as $mode) { foreach ($config['installedpackages']["openvpn$mode"]['config'] as $id => $settings) { $setting = $config['installedpackages']["openvpn$mode"]['config'][$id]; if (!$setting['disable']) { - $pconfig['name'] = "openvpn"; - $pconfig['mode'] = $mode; - $pconfig['id'] = $id; - $pconfig['description'] = "OpenVPN ".$mode.": ".htmlspecialchars($setting['description']); - $services[] = $pconfig; - unset($pconfig); + $sconfig['name'] = "openvpn"; + $sconfig['mode'] = $mode; + $sconfig['id'] = $id; + $sconfig['description'] = "OpenVPN ".$mode.": ".htmlspecialchars($setting['description']); + $services[] = $sconfig; + unset($sconfig); } } } |