From e5f67098c76b4b462252816f53ea255a7588292a Mon Sep 17 00:00:00 2001 From: D Ruth Bavousett Date: Mon, 13 Feb 2012 10:25:40 -0500 Subject: [PATCH] Bug 7535: ampersands not showing properly in non-XSLT OPAC Jared's fix for Bug 3326 fixed this in the staff client, but not the OPAC; moving this one line fixes it both places. --- C4/Output.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/C4/Output.pm b/C4/Output.pm index 75ced46..9087075 100644 --- a/C4/Output.pm +++ b/C4/Output.pm @@ -297,12 +297,12 @@ sub output_with_http_headers($$$$;$) { # utf8::encode($data) if utf8::is_utf8($data); + $data =~ s/\&\;amp\; /\&\; /g; print $query->header($options), $data; } sub output_html_with_http_headers ($$$;$) { my ( $query, $cookie, $data, $status ) = @_; - $data =~ s/\&\;amp\; /\&\; /g; output_with_http_headers( $query, $cookie, $data, 'html', $status ); } -- 1.7.2.5