From 79cbcd7d82ced3ac9e243a22410ba45b2a316356 Mon Sep 17 00:00:00 2001 From: gmc Date: Wed, 27 Oct 2010 12:06:22 +0000 Subject: [PATCH] fix glitch in escaping call number labels Signed-off-by: Galen Charlton git-svn-id: svn://svn.open-ils.org/ILS/trunk@18487 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