diff options
author | Bill Marquette <billm@pfsense.org> | 2005-06-05 00:32:24 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2005-06-05 00:32:24 +0000 |
commit | 3e9f1980b62945ffaf8fabbd554675ffe02fef79 (patch) | |
tree | 58eeaef5ecef349df1744348ba44e0948b78a8a6 | |
parent | 52be1d0303ba825b93fd39fa42148a3fd34ea24e (diff) | |
download | pfsense-3e9f1980b62945ffaf8fabbd554675ffe02fef79.zip pfsense-3e9f1980b62945ffaf8fabbd554675ffe02fef79.tar.gz |
Bytes -> bits
Redirect to / after "Finish"
run filter_configure() - rules seem to parse clean now ;)
-rw-r--r-- | usr/local/www/wizards/traffic_shaper_wizard.xml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/usr/local/www/wizards/traffic_shaper_wizard.xml b/usr/local/www/wizards/traffic_shaper_wizard.xml index b798eff..4a8fb99 100644 --- a/usr/local/www/wizards/traffic_shaper_wizard.xml +++ b/usr/local/www/wizards/traffic_shaper_wizard.xml @@ -60,14 +60,14 @@ <fields> <field> <name>Download</name> - <description>The download speed of your WAN link in KBytes/second.</description> + <description>The download speed of your WAN link in Kbits/second.</description> <type>input</type> <validate>^[0-9]*$</validate> <message>Download speed must be numerical</message> </field> <field> <name>Upload</name> - <description>The upload speed of your WAN link in KBytes/second.</description> + <description>The upload speed of your WAN link in Kbits/second.</description> <type>input</type> <validate>^[0-9]*$</validate> <message>Upload speed must be numerical</message> @@ -254,19 +254,19 @@ <typehint>Bandwidth guarantee for VOIP phone</typehint> <options> <option> - <name>128KBytes/sec</name> + <name>128Kbits/sec</name> <value>128</value> </option> <option> - <name>96KBytes/sec</name> + <name>96Kbits/sec</name> <value>96</value> </option> <option> - <name>64KBytes/sec</name> + <name>64Kbits/sec</name> <value>64</value> </option> <option> - <name>32KBytes/sec</name> + <name>32Kbits/sec</name> <value>32</value> </option> </options> @@ -615,7 +615,8 @@ </fields> <stepsubmitphpaction> $config['shaper']['enable'] = TRUE; -/* XXX reload filter rules */ + filter_configure(); + header("Location: /"); </stepsubmitphpaction> </step> |