summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_captiveportal_ip_edit.php
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2010-04-22 21:08:00 +0000
committerErmal <eri@pfsense.org>2010-04-22 21:08:00 +0000
commitc10ea0a13fd4e816c1e803660ef5dae48a0832a2 (patch)
tree6c1c134633279311dea42840403488dda2786884 /usr/local/www/services_captiveportal_ip_edit.php
parente3e5160cfa5a79d625b1b698930c11b139a86519 (diff)
downloadpfsense-c10ea0a13fd4e816c1e803660ef5dae48a0832a2.zip
pfsense-c10ea0a13fd4e816c1e803660ef5dae48a0832a2.tar.gz
Add missing ;
Diffstat (limited to 'usr/local/www/services_captiveportal_ip_edit.php')
-rwxr-xr-xusr/local/www/services_captiveportal_ip_edit.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/services_captiveportal_ip_edit.php b/usr/local/www/services_captiveportal_ip_edit.php
index 977ba9f..f3b297c 100755
--- a/usr/local/www/services_captiveportal_ip_edit.php
+++ b/usr/local/www/services_captiveportal_ip_edit.php
@@ -123,12 +123,12 @@ if ($_POST) {
$ruleno = captiveportal_get_next_ipfw_ruleno();
if (!empty($ip['bw_up'])) {
$pipeno = $ruleno + 20000;
- mwexec("/sbin/ipfw pipe {$pipeno} config bw {$ip['bw_up']}Kbit/s queue 100")
+ mwexec("/sbin/ipfw pipe {$pipeno} config bw {$ip['bw_up']}Kbit/s queue 100");
$bwup = "pipe {$pipeno}";
}
if (!empty($ip['bw_down'])) {
$pipeno = $ruleno + 20001;
- mwexec("/sbin/ipfw pipe {$pipeno} config bw {$ip['bw_down']}Kbit/s queue 100")
+ mwexec("/sbin/ipfw pipe {$pipeno} config bw {$ip['bw_down']}Kbit/s queue 100");
$bwdown = "pipe {$pipeno}";
}
mwexec("/sbin/ipfw table 1 add {$ip['ip']} {$bwup}");
OpenPOWER on IntegriCloud