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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/printinvoice.tt (-1 / +1 lines)
Lines 15-21 Link Here
15
<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon | url %][% ELSE %][% interface | html %]/[% theme | html %]/img/favicon.ico[% END %]" type="image/x-icon" />
15
<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon | url %][% ELSE %][% interface | html %]/[% theme | html %]/img/favicon.ico[% END %]" type="image/x-icon" />
16
16
17
[% Asset.css("css/printreceiptinvoice.css") | $raw %]
17
[% Asset.css("css/printreceiptinvoice.css") | $raw %]
18
[% IF slip.style %]<style>[% slip.style | $raw %]</style>[% END %]
18
[% IF style %]<style>[% style | $raw %]</style>[% END %]
19
[% INCLUDE 'blocking_errors.inc' %]
19
[% INCLUDE 'blocking_errors.inc' %]
20
</head>
20
</head>
21
21
(-)a/members/printinvoice.pl (-1 / +1 lines)
Lines 83-88 $template->param( Link Here
83
    slip   => $letter->{content},
83
    slip   => $letter->{content},
84
    plain  => !$letter->{is_html},
84
    plain  => !$letter->{is_html},
85
    patron => $patron,
85
    patron => $patron,
86
    style  => $letter->{style},
86
);
87
);
87
88
88
output_html_with_http_headers $input, $cookie, $template->output;
89
output_html_with_http_headers $input, $cookie, $template->output;
89
- 

Return to bug 33478