Try doing this, the block of code in main.inc.php looks like this:
<pre>
while( list($key,$value) = each($GLOBALS)) {
if (is_string($value) == 1) {
$GLOBALS[$key] = stripslashes($value);
}
}</pre>
Try changing that, to this:
<pre>
if (is_array($GLOBALS)==1) {
while( list($key,$value) = each($GLOBALS)) {
if (is_string($value) == 1) {
$GLOBALS[$key] = stripslashes($value);
}
}
}</pre>
-------------------
Scream
WWWThreads Developer