From: Marc Chantreux Date: Tue, 8 Dec 2009 10:47:17 +0000 (+0100) Subject: remove NSB and NSE from output X-Git-Tag: v3.00.05~7 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=d64830b771a27533864a2324fa6aea9bc5edd075;p=koha.git remove NSB and NSE from output --- diff --git a/C4/Output.pm b/C4/Output.pm index 19e946eba5..1e00d4f8f4 100644 --- a/C4/Output.pm +++ b/C4/Output.pm @@ -372,7 +372,16 @@ response's Content-Type to that value instead of "text/html". sub output_html_with_http_headers ($$$;$) { my $query = shift; my $cookie = shift; - my $html = shift; + my $html = shift; + $html =~ s/ \x{C2} + (?: \x{88} # NSB + | \x{89} # NSE + # SUDOC shares the cataloguing of french universities + | \x{98} # SUDOC NSB + | \x{9c} # SUDOC NSE + ) + //gx; + my $content_type = @_ ? shift : "text/html"; $content_type = "text/html" unless $content_type =~ m!/!; # very basic sanity check print $query->header(