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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-detail-sidebar.inc (-1 / +1 lines)
Lines 83-89 Link Here
83
                                    </a>
83
                                    </a>
84
                                [% ELSE %]
84
                                [% ELSE %]
85
                                    [% FOREACH filesOption IN filesOptions %]
85
                                    [% FOREACH filesOption IN filesOptions %]
86
                                        <li><a role="menuitem" href="/cgi-bin/koha/opac-export.pl?format=[% filesOption.format | html %]&amp;op=exportxsl&amp;file=[% filesOption.value | html %]&amp;bib=[% biblionumber | html %]">XSL - [% filesOption.filename | html %]</a></li>
86
                                        <a role="menuitem" href="/cgi-bin/koha/opac-export.pl?format=[% filesOption.format | html %]&amp;op=exportxsl&amp;file=[% filesOption.value | html %]&amp;bib=[% biblionumber | html %]">XSL - [% filesOption.filename | html %]</a>
87
                                    [% END %]
87
                                    [% END %]
88
                                [% END %]
88
                                [% END %]
89
                            [% END %]
89
                            [% END %]
(-)a/opac/opac-export.pl (-2 / +1 lines)
Lines 31-37 use CGI qw ( -utf8 ); Link Here
31
use C4::Auth;
31
use C4::Auth;
32
use C4::Ris qw( marc2ris );
32
use C4::Ris qw( marc2ris );
33
use Koha::Biblios;
33
use Koha::Biblios;
34
use C4::XSLT;
34
use C4::XSLT qw( XSLTParse4Display );
35
35
36
use Koha::RecordProcessor;
36
use Koha::RecordProcessor;
37
37
38
- 

Return to bug 17385