diff options
author | Ermal <eri@pfsense.org> | 2010-11-29 11:52:39 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2010-11-29 11:53:12 +0000 |
commit | c45d1cfe714606092a8e9bd9f51e3f724233ea05 (patch) | |
tree | 5871332e79b22ea346cfca39bee1c35c312788c7 /usr/local/www | |
parent | f3c91cb5ac9b5401d389111f9f0216234ecdfb42 (diff) | |
download | pfsense-c45d1cfe714606092a8e9bd9f51e3f724233ea05.zip pfsense-c45d1cfe714606092a8e9bd9f51e3f724233ea05.tar.gz |
Remove old reference to function. Reported-by: http://forum.pfsense.org/index.php/topic,30508.0.html
Diffstat (limited to 'usr/local/www')
-rwxr-xr-x | usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc b/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc index 78c8990..061c900 100755 --- a/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc +++ b/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc @@ -525,7 +525,7 @@ function step4_stepsubmitphpaction() { $stepid--; return; } - $bw = wizard_get_bw($_POST['bandwidth']); + $bw = $_POST['bandwidth']; if($bw > 15 && $bw < 2) { $savemsg="Values should be between 2% and 15%!"; $stepid--; @@ -554,7 +554,7 @@ function step5_stepsubmitphpaction() { $stepid--; return; } - $bw = wizard_get_bw($_POST['bandwidth']); + $bw = $_POST['bandwidth']; if($bw > 15 && $bw < 2) { $savemsg="Values should be between 2% and 15%!"; $stepid--; |