Marc Roberts - 2004-11-08

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