diff options
author | Renato Botelho <garga@FreeBSD.org> | 2013-04-24 07:51:38 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2013-04-24 07:51:38 -0300 |
commit | 9fdf9660771ace5b2c9603f55f88dd57d928ba11 (patch) | |
tree | 6f78e530aceb7ed58eedfbb35902949e443e7715 | |
parent | f8fee2cead58ea34dfc7d4b9d022f05ffd738980 (diff) | |
download | pfsense-9fdf9660771ace5b2c9603f55f88dd57d928ba11.zip pfsense-9fdf9660771ace5b2c9603f55f88dd57d928ba11.tar.gz |
Avoid set 2 sources on shaper wizard. Fixes #2959
3 files changed, 0 insertions, 3 deletions
diff --git a/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc b/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc index a5a73e1..b6bb470 100755 --- a/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc +++ b/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc @@ -1406,7 +1406,6 @@ function apply_all_choosen_items() { $rule['type'] = "match"; $rule['interface'] = $interfacelist; $rule['descr'] = gettext("Penalty Box"); - $rule['source']['any'] = TRUE; $rule['defaultqueue'] = "qOthersLow"; $rule['source']['address'] = $config['ezshaper']['step4']['address']; $rule['destination']['any'] = TRUE; diff --git a/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc b/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc index 8a1c8c6..f87ba4c 100755 --- a/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc +++ b/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc @@ -1462,7 +1462,6 @@ function apply_all_choosen_items() { $rule['type'] = "match"; $rule['interface'] = $interfacelist; $rule['descr'] = gettext("Penalty Box"); - $rule['source']['any'] = TRUE; $rule['defaultqueue'] = "qOthersLow"; $rule['source']['address'] = $config['ezshaper']['step4']['address']; $rule['destination']['any'] = TRUE; diff --git a/usr/local/www/wizards/traffic_shaper_wizard_multi_lan.inc b/usr/local/www/wizards/traffic_shaper_wizard_multi_lan.inc index 8f53d60..a8e7ec9 100644 --- a/usr/local/www/wizards/traffic_shaper_wizard_multi_lan.inc +++ b/usr/local/www/wizards/traffic_shaper_wizard_multi_lan.inc @@ -1203,7 +1203,6 @@ function apply_all_choosen_items() { $rule['type'] = "match"; $rule['interface'] = "wan"; $rule['descr'] = gettext("Penalty Box"); - $rule['source']['any'] = TRUE; $rule['defaultqueue'] = "qOthersLow"; $rule['source']['address'] = $config['ezshaper']['step4']['address']; $rule['destination']['any'] = TRUE; |