From 47b307976b990ad3086f45f4d733c38b63653dc9 Mon Sep 17 00:00:00 2001
From: moodler <moodler>
Date: Wed, 31 Mar 2004 08:45:11 +0000
Subject: [PATCH] Removing a line from stripslashes_safe ... not sure why we
 were replacing these double slashes ...

---
 lib/weblib.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
 }
 
-- 
2.39.5