diff options
author | Scott Ullrich <sullrich@su.local> | 2009-09-03 21:37:22 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@su.local> | 2009-09-03 21:37:22 -0400 |
commit | 7e1f03481fa7db3c1c41c36ae090c2fa41973db1 (patch) | |
tree | 5ecee6d7e2e400069a72c6309558f164f013ef5a | |
parent | 0ece92a1c029666e8bc672345db1265c665851cc (diff) | |
download | pfsense-7e1f03481fa7db3c1c41c36ae090c2fa41973db1.zip pfsense-7e1f03481fa7db3c1c41c36ae090c2fa41973db1.tar.gz |
Change 'Interface of this connection' to 'Select interface #X that you would like to shape'
-rwxr-xr-x | usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc | 3 |
1 files changed, 2 insertions, 1 deletions
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 08121e3..e02b5cf 100755 --- a/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc +++ b/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc @@ -148,7 +148,8 @@ function step2_stepbeforeformdisplay() { $field = array(); $field['name'] = "conn{$i}interface"; $field['type'] = "select"; - $field['typehint'] = "Interface of this connection."; + $interface_real = $i+1; + $field['typehint'] = "Select interface #{$interface_real} that you would like to shape"; $field['options']['option'] = array(); foreach ($iflist as $ifname) { $opts = array(); |