From: gmc Date: Wed, 27 Oct 2010 13:51:55 +0000 (+0000) Subject: fix glitch in escaping call number labels X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=546f13a6f43c396161f7b464ad306886b4c8dce6;p=evergreen%2Fequinox.git fix glitch in escaping call number labels Signed-off-by: Galen Charlton git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_2_0@18488 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm b/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm index 3e81d2fc4a..88c17f3fd1 100644 --- a/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm +++ b/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm @@ -53,8 +53,8 @@ $browse_types{call_number}{xml} = sub { my $cn_label = $cn->label; $cn_label =~ s/\n//gos; - $cn_label =~ s/'/'/go; $cn_label =~ s/&/&/go; + $cn_label =~ s/'/'/go; $cn_label =~ s//>/go;