From: miker Date: Mon, 14 Mar 2005 00:00:37 +0000 (+0000) Subject: not escaping "/" characters X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a2ca96e5df56538ea299539584f37c6f61d5794a;p=opensrf%2Fbjwebb.git not escaping "/" characters git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@223 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/perlmods/JSON.pm b/src/perlmods/JSON.pm index c878f86..0711049 100644 --- a/src/perlmods/JSON.pm +++ b/src/perlmods/JSON.pm @@ -219,7 +219,6 @@ sub perl2JSON { $output .= perl2JSON(undef,$perl); } else { $perl =~ s{\\}{\\\\}sgo; - $perl =~ s{\/}{\\\/}sgo; $perl =~ s/"/\\"/sgo; $perl =~ s/\t/\\t/sgo; $perl =~ s/\f/\\f/sgo;