Reinstated the line in stripslashes_safe() that removes the slash that escapes a backslash. Martin removed this line in March. Why?

This commit is contained in:
gustav_delius 2004-12-27 23:40:42 +00:00
parent a7ca4cd150
commit b403c32aa0

View File

@ -313,7 +313,7 @@ function stripslashes_safe($string) {
$string = str_replace("\\'", "'", $string);
$string = str_replace('\\"', '"', $string);
//$string = str_replace('\\\\', '\\', $string); // why?
$string = str_replace('\\\\', '\\', $string);
return $string;
}