From: moodler Date: Wed, 31 Mar 2004 08:45:11 +0000 (+0000) Subject: Removing a line from stripslashes_safe ... not sure why we were replacing X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=47b307976b990ad3086f45f4d733c38b63653dc9;p=moodle.git Removing a line from stripslashes_safe ... not sure why we were replacing these double slashes ... --- diff --git a/lib/weblib.php b/lib/weblib.php index f0f121602b..5ac2a5a720 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -188,7 +188,7 @@ function stripslashes_safe($string) { $string = str_replace("\\'", "'", $string); $string = str_replace('\\"', '"', $string); - $string = str_replace('\\\\', '\\', $string); + //$string = str_replace('\\\\', '\\', $string); // why? return $string; }