X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=C4%2FOutput.pm;h=9087075ee5153866725466d6583ec73fc8a5f51c;hb=624edf3dba8fda35d0a071bb9dc8755ddbf00d44;hp=41a0a2863cff6ceaba8bbe3c84addee81ed31049;hpb=2c09527abe0322c707c8a01a2195b7385d31b418;p=koha.git diff --git a/C4/Output.pm b/C4/Output.pm index 41a0a2863c..9087075ee5 100644 --- a/C4/Output.pm +++ b/C4/Output.pm @@ -33,7 +33,6 @@ use C4::Dates qw(format_date); use C4::Budgets qw(GetCurrency); use C4::Templates; -#use HTML::Template::Pro; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); BEGIN { @@ -292,21 +291,18 @@ sub output_with_http_headers($$$$;$) { $options->{'Content-Style-Type' } = 'text/css'; $options->{'Content-Script-Type'} = 'text/javascript'; } - # remove SUDOC specific NSB NSE - $data =~ s/\x{C2}\x{98}|\x{C2}\x{9C}/ /g; - $data =~ s/\x{C2}\x{88}|\x{C2}\x{89}/ /g; - + # We can't encode here, that will double encode our templates, and xslt # We need to fix the encoding as it comes out of the database, or when we pass the variables to templates # 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 ); }