diff options
author | Ermal Luçi <eri@pfsense.org> | 2009-11-24 11:53:09 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2009-11-24 11:53:09 +0000 |
commit | 474ef84c87f0acdd733bcca43d06a3aa17da5aa1 (patch) | |
tree | c0e15258428f68a41d18517f134bb35687844221 /usr | |
parent | 127b93cf79e7e96dfcbbc8c91821b14d3a9a8f5d (diff) | |
download | pfsense-474ef84c87f0acdd733bcca43d06a3aa17da5aa1.zip pfsense-474ef84c87f0acdd733bcca43d06a3aa17da5aa1.tar.gz |
Fix problems with traffic shaper wizards not propperly handling the parameter at first step.
Diffstat (limited to 'usr')
4 files changed, 10 insertions, 5 deletions
diff --git a/usr/local/www/wizards/traffic_shaper_wizard.xml b/usr/local/www/wizards/traffic_shaper_wizard.xml index 7bfef0d..3b802e7 100644 --- a/usr/local/www/wizards/traffic_shaper_wizard.xml +++ b/usr/local/www/wizards/traffic_shaper_wizard.xml @@ -37,7 +37,8 @@ <description>This wizard will guide you through setting up the pfSense traffic shaper.</description> <fields> <field> - <name>Enter number of WAN connections</name> + <displayname>Enter number of WAN connections</displayname> + <name>numberofconnections</name> <type>input</type> <validate>^[0-9]+$</validate> <description>Number of connections you have</description> diff --git a/usr/local/www/wizards/traffic_shaper_wizard_dedicated.xml b/usr/local/www/wizards/traffic_shaper_wizard_dedicated.xml index 4c1c376..fd7e40c 100755 --- a/usr/local/www/wizards/traffic_shaper_wizard_dedicated.xml +++ b/usr/local/www/wizards/traffic_shaper_wizard_dedicated.xml @@ -43,7 +43,8 @@ <name>Traffic shaper Wizard</name> </field> <field> - <name>Enter number of WAN type connections</name> + <displayname>Enter number of WAN type connections</displayname> + <name>numberofconnections</name> <type>input</type> <validate>^[0-9]+$</validate> <description>Number of connections you have</description> diff --git a/usr/local/www/wizards/traffic_shaper_wizard_multi_all.xml b/usr/local/www/wizards/traffic_shaper_wizard_multi_all.xml index 2009e95..6bac859 100755 --- a/usr/local/www/wizards/traffic_shaper_wizard_multi_all.xml +++ b/usr/local/www/wizards/traffic_shaper_wizard_multi_all.xml @@ -43,14 +43,16 @@ <name>Traffic shaper Wizard</name> </field> <field> - <name>Enter number of WAN type connections</name> + <displayname>Enter number of WAN type connections</displayname> + <name>numberofconnections</name> <type>input</type> <validate>^[0-9]+$</validate> <description>Number of connections you have</description> <bindstofield>ezshaper->step1->numberofconnections</bindstofield> </field> <field> - <name>Enter number of LAN type interfaces</name> + <displayname>Enter number of LAN type interfaces</displayname> + <name>numberoflocalinterfaces</name> <type>input</type> <validate>^[0-9]+$</validate> <description>Number of local interfaces you have</description> diff --git a/usr/local/www/wizards/traffic_shaper_wizard_multi_lan.xml b/usr/local/www/wizards/traffic_shaper_wizard_multi_lan.xml index c277839..0b0a6be 100644 --- a/usr/local/www/wizards/traffic_shaper_wizard_multi_lan.xml +++ b/usr/local/www/wizards/traffic_shaper_wizard_multi_lan.xml @@ -39,7 +39,8 @@ <description>This wizard will guide you through setting up the pfSense traffic shaper for the situation where you have 1 WAN connection and multiple LAN connections.</description> <fields> <field> - <name>Enter number of LAN type connections</name> + <displayname>Enter number of LAN type connections</displayname> + <name>numberofconnections</name> <type>input</type> <validate>^[0-9]+$</validate> <description>Number of local(LAN) interfaces you have</description> |