From 546f13a6f43c396161f7b464ad306886b4c8dce6 Mon Sep 17 00:00:00 2001 From: gmc Date: Wed, 27 Oct 2010 13:51:55 +0000 Subject: [PATCH] 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 --- Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.0