From 58b397ad2ab313cd66b5d9d107b61fbdf1f3e421 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Tue, 6 Feb 2007 19:40:49 +0000 Subject: [PATCH] Do not encode & as & ... This is not a XML document. --- usr/local/www/wizards/traffic_shaper_wizard.inc | 4 ++-- 1 file 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 8774c4f97d..12fe1f5584 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&stepid=1&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&stepid=1&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']);