Do not encode & as & ... This is not a XML document.

This commit is contained in:
Scott Ullrich 2007-02-06 19:40:49 +00:00
parent 9036c500e1
commit 58b397ad2a

View File

@ -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']);