Bug 7432 : Fixing caching for SQLHelper
[koha.git] / C4 / Output.pm
index 6a8f82d..75ced46 100644 (file)
@@ -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 {
@@ -53,6 +52,15 @@ BEGIN {
 }
 
 
+=head1 NAME
+
+C4::Output - Functions for managing output, is slowly being deprecated
+
+=head1 FUNCTIONS
+
+=over 2
+=cut
+
 =item FormatNumber
 =cut
 sub FormatNumber{
@@ -283,10 +291,7 @@ 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