Bug 6135: insert fields ordered in C4::biblio:ModBiblioMarc
[koha_fer] / C4 / Output.pm
index 0adc163..98f2d7a 100644 (file)
@@ -464,7 +464,10 @@ sub output_with_http_headers($$$$;$) {
     $data =~ s/\x{C2}\x{98}|\x{C2}\x{9C}/ /g;
     $data =~ s/\x{C2}\x{88}|\x{C2}\x{89}/ /g;
       
-    utf8::encode($data) if utf8::is_utf8($data);
+# 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);
 
     print $query->header($options), $data;
 }