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

(-)a/C4/Output.pm (-2 / +1 lines)
Lines 474-480 sub output_with_http_headers($$$$;$) { Link Here
474
474
475
sub output_html_with_http_headers ($$$;$) {
475
sub output_html_with_http_headers ($$$;$) {
476
    my ( $query, $cookie, $data, $status ) = @_;
476
    my ( $query, $cookie, $data, $status ) = @_;
477
    $data =~ s/\&amp\;amp\; /\&amp\; /;
477
    $data =~ s/\&amp\;amp\; /\&amp\; /g;
478
    output_with_http_headers( $query, $cookie, $data, 'html', $status );
478
    output_with_http_headers( $query, $cookie, $data, 'html', $status );
479
}
479
}
480
480
481
- 

Return to bug 3326