summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2013-02-25 09:32:11 -0300
committerRenato Botelho <garga@FreeBSD.org>2013-02-25 09:32:11 -0300
commit5203443215689fcec7fae36fcd41698504c5e427 (patch)
tree36f10b2c9e8fcd93f877f3dc1bee429aca39ad93 /etc
parent4cfd23901d1da439a8373e90142ec175c03d7dab (diff)
downloadpfsense-5203443215689fcec7fae36fcd41698504c5e427.zip
pfsense-5203443215689fcec7fae36fcd41698504c5e427.tar.gz
Make sure captiveportal section of config is an array, reported on ticket #2838
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/captiveportal.inc10
-rw-r--r--etc/inc/system.inc2
2 files changed, 7 insertions, 5 deletions
diff --git a/etc/inc/captiveportal.inc b/etc/inc/captiveportal.inc
index c63e3c9..386a4ce 100644
--- a/etc/inc/captiveportal.inc
+++ b/etc/inc/captiveportal.inc
@@ -370,10 +370,12 @@ EOD;
else {
/* Deactivate ipfw(4) if not needed */
$cpactive = false;
- foreach ($config['captiveportal'] as $cpkey => $cp) {
- if (isset($cp['enable'])) {
- $cpactive = true;
- break;
+ if (is_array($config['captiveportal'])) {
+ foreach ($config['captiveportal'] as $cpkey => $cp) {
+ if (isset($cp['enable'])) {
+ $cpactive = true;
+ break;
+ }
}
}
if ($cpactive === false)
diff --git a/etc/inc/system.inc b/etc/inc/system.inc
index 423aa11..3bea41e 100644
--- a/etc/inc/system.inc
+++ b/etc/inc/system.inc
@@ -1348,7 +1348,7 @@ function system_reboot_cleanup() {
mwexec("/usr/local/bin/beep.sh stop");
require_once("captiveportal.inc");
- if (isset($config['captiveportal'])) {
+ if (is_array($config['captiveportal'])) {
foreach ($config['captiveportal'] as $cpzone=>$cp) {
captiveportal_radius_stop_all();
captiveportal_send_server_accounting(true);
OpenPOWER on IntegriCloud