Index: trunk/globals.php =================================================================== diff -u -r1054 -r1055 --- trunk/globals.php (.../globals.php) (revision 1054) +++ trunk/globals.php (.../globals.php) (revision 1055) @@ -420,15 +420,16 @@ function inp_unescape($in) { - return $in; +// if (get_magic_quotes_gpc()) + return $in; $out=stripslashes($in); - return $out; } function inp_textarea_unescape($in) { - return $in; +// if (get_magic_quotes_gpc()) + return $in; $out=stripslashes($in); $out = str_replace("\n
", "\n", $out); return $out;