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

(-)a/opac/opac-export.pl (-1 / +7 lines)
Lines 144-149 else { Link Here
144
            -charset    => 'utf-8',
144
            -charset    => 'utf-8',
145
            -attachment =>  "bib-$biblionumber.txt"
145
            -attachment =>  "bib-$biblionumber.txt"
146
        );
146
        );
147
    }
148
    elsif ( $format eq 'ris' ) {
149
        print $query->header(
150
            -type => 'text/plain',
151
            -charset => 'utf-8',
152
            -attachment => "bib-$biblionumber.$format"
153
        );
147
    } else {
154
    } else {
148
        binmode STDOUT, ':encoding(UTF-8)';
155
        binmode STDOUT, ':encoding(UTF-8)';
149
        print $query->header(
156
        print $query->header(
150
- 

Return to bug 22075