For servers with magic quotes enabled you may end up with extra \'s in your descriptions.
a quick fix for this is to add
if (get_magic_quotes_gpc()) $text = stripslashes($text);
to the loadTextFile function just before "return $text;" in functions.inc.php around line 453
Log in to post a comment.
For servers with magic quotes enabled you may end up with extra \'s in your descriptions.
a quick fix for this is to add
if (get_magic_quotes_gpc()) $text = stripslashes($text);
to the loadTextFile function just before "return $text;" in functions.inc.php around line 453