View | Details | Raw Unified | Return to bug 6098
Collapse All | Expand All

(-)a/C4/Output.pm (-5 / +1 lines)
Lines 291-300 sub output_with_http_headers($$$$;$) { Link Here
291
        $options->{'Content-Style-Type' } = 'text/css';
291
        $options->{'Content-Style-Type' } = 'text/css';
292
        $options->{'Content-Script-Type'} = 'text/javascript';
292
        $options->{'Content-Script-Type'} = 'text/javascript';
293
    }
293
    }
294
    # remove SUDOC specific NSB NSE
294
295
    $data =~ s/\x{C2}\x{98}|\x{C2}\x{9C}/ /g;
296
    $data =~ s/\x{C2}\x{88}|\x{C2}\x{89}/ /g;
297
      
298
# We can't encode here, that will double encode our templates, and xslt
295
# We can't encode here, that will double encode our templates, and xslt
299
# We need to fix the encoding as it comes out of the database, or when we pass the variables to templates
296
# We need to fix the encoding as it comes out of the database, or when we pass the variables to templates
300
 
297
 
301
- 

Return to bug 6098