From 520c4c93f9dc3430ef6d7d019ade285680b6be96 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Fri, 9 Dec 2005 07:03:03 +0000 Subject: [PATCH] Don't need to convert slashes into anything special --- includes/svnlib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/svnlib.php b/includes/svnlib.php index d629d6e..ebdceaa 100644 --- a/includes/svnlib.php +++ b/includes/svnlib.php @@ -147,7 +147,7 @@ class SVNLib // make sure that we keep escaped chars //$output = str_replace(array('\t', '\n', '\r'), array('\\\t', '\\\n', '\\\r'), $output); //$output = preg_replace('#\\\(.)#', '\\\\\\\\' . '\1', $output); - $output = str_replace('\\', '\\\\', $output); + //$output = str_replace('\\', '\\\\', $output); $temp = implode("\n", $output); if (strpos($temp, '(apr' . '_err=') !== false) @@ -1025,4 +1025,4 @@ class SVNDiff || # $Id$ || ################################################################### \*=====================================================================*/ -?> \ No newline at end of file +?> -- 2.22.5