
Originally Posted by
marcopolo
Ok DrByte,
I applied your code change, but it did not display anything to me.
Argh, cuz I gave you the wrong lines 
At line 319 insert the new line shown:
Code:
foreach ($_POST as $key => $value) {
if (!in_array($key, $postToIgnore)) {
if (is_array($value)) {
foreach($value as $key2 => $val2){
if (is_array($val2)) die('Value of ['.$key2.'] found to be array: <pre>' . print_r($value, true));
$_POST[$key][$key2] = htmlspecialchars($val2);
}
} else {
$_POST[$key] = htmlspecialchars($value);
}
}
}
foreach ($_GET as $key => $value) {
Bookmarks