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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/printnotice.tt (-1 / +1 lines)
Lines 18-24 Link Here
18
[% IF ( Koha.Preference('SlipCSS') ) %]
18
[% IF ( Koha.Preference('SlipCSS') ) %]
19
<link rel="stylesheet" type="text/css" href="[% Koha.Preference('SlipCSS') | $raw %]" />
19
<link rel="stylesheet" type="text/css" href="[% Koha.Preference('SlipCSS') | $raw %]" />
20
[% END %]
20
[% END %]
21
[% IF slip.style %]<style>[% slip.style | $raw %]</style>[% END %]
21
[% IF style %]<style>[% style | $raw %]</style>[% END %]
22
</head>
22
</head>
23
23
24
<body id="members_printslip" class="member">
24
<body id="members_printslip" class="member">
(-)a/members/printnotice.pl (-4 / +4 lines)
Lines 64-72 my $letter = C4::Letters::GetPreparedLetter( Link Here
64
);
64
);
65
65
66
$template->param(
66
$template->param(
67
    title  => $letter->{title},
67
    title => $letter->{title},
68
    slip   => $letter->{content},
68
    slip  => $letter->{content},
69
    plain  => !$letter->{is_html},
69
    plain => !$letter->{is_html},
70
    style => $letter->{style},
70
);
71
);
71
72
72
output_html_with_http_headers $input, $cookie, $template->output;
73
output_html_with_http_headers $input, $cookie, $template->output;
73
- 

Return to bug 33478