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

(-)a/Koha/UploadedFile.pm (-2 / +1 lines)
Lines 131-137 sub httpheaders { Link Here
131
    if( $self->filename =~ /\.pdf$/ ) {
131
    if( $self->filename =~ /\.pdf$/ ) {
132
        return (
132
        return (
133
            '-type'       => 'application/pdf',
133
            '-type'       => 'application/pdf',
134
            'Content-Disposition' => 'inline; filename='.$self->filename,
134
            'Content-Disposition' => 'inline; filename="'.$self->filename.'"',
135
        );
135
        );
136
    } else {
136
    } else {
137
        return (
137
        return (
138
- 

Return to bug 28123