summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2007-02-06 19:40:49 +0000
committerScott Ullrich <sullrich@pfsense.org>2007-02-06 19:40:49 +0000
commit58b397ad2ab313cd66b5d9d107b61fbdf1f3e421 (patch)
tree78a1be27cba604f6aadd24273b23dee7aa584bfb /usr
parent9036c500e1bb4537d86fdfa89815b7a3143136eb (diff)
downloadpfsense-58b397ad2ab313cd66b5d9d107b61fbdf1f3e421.zip
pfsense-58b397ad2ab313cd66b5d9d107b61fbdf1f3e421.tar.gz
Do not encode & as &amp; ... This is not a XML document.
Diffstat (limited to 'usr')
-rw-r--r--usr/local/www/wizards/traffic_shaper_wizard.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/wizards/traffic_shaper_wizard.inc b/usr/local/www/wizards/traffic_shaper_wizard.inc
index 8774c4f..12fe1f5 100644
--- a/usr/local/www/wizards/traffic_shaper_wizard.inc
+++ b/usr/local/www/wizards/traffic_shaper_wizard.inc
@@ -44,12 +44,12 @@ function step2_stepsubmitphpaction() {
global $g, $config;
if(!is_numeric($_POST['upload']) or !is_numeric($_POST['download'])) {
$message="Upload and download speeds must be a number only! Values should be Kbits/second.";
- header("Location: /wizard.php?xml=traffic_shaper_wizard.xml&amp;stepid=1&amp;message={$message}");
+ header("Location: /wizard.php?xml=traffic_shaper_wizard.xml&stepid=1&message={$message}");
exit;
}
if ($config['ezshaper']['step2']['inside_int'] == $config['ezshaper']['step2']['outside_int']) {
$message="Inside and Outside interfaces cannot be the same. Please select a unique interface for both.";
- header("Location: /wizard.php?xml=traffic_shaper_wizard.xml&amp;stepid=1&amp;message={$message}");
+ header("Location: /wizard.php?xml=traffic_shaper_wizard.xml&stepid=1&message={$message}");
exit;
}
$downq = "q" . convert_friendly_interface_to_friendly_descr($config['ezshaper']['step2']['inside_int']);
OpenPOWER on IntegriCloud