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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/printfeercpt.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/printfeercpt.pl (-1 / +1 lines)
Lines 91-96 $template->param( Link Here
91
    slip   => $letter->{content},
91
    slip   => $letter->{content},
92
    plain  => !$letter->{is_html},
92
    plain  => !$letter->{is_html},
93
    patron => $patron,
93
    patron => $patron,
94
    style  => $letter->{style},
94
);
95
);
95
96
96
output_html_with_http_headers $input, $cookie, $template->output;
97
output_html_with_http_headers $input, $cookie, $template->output;
97
- 

Return to bug 33478