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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt (-1 / +3 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
2
[% USE raw %]
1
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Serials  &rsaquo; Routing slip preview</title>
5
<title>Koha &rsaquo; Serials  &rsaquo; Routing slip preview</title>
Lines 30-36 Link Here
30
</table>
32
</table>
31
33
32
<div id="routingnotes">
34
<div id="routingnotes">
33
    <p id="generalroutingnote">[% generalroutingnote | html %]</p>
35
    <p id="generalroutingnote">[% Koha.Preference('RoutingListNote') | $raw %]</p>
34
    <p id="routingnote">[% routingnotes | html %]</p>
36
    <p id="routingnote">[% routingnotes | html %]</p>
35
</div>
37
</div>
36
38
(-)a/serials/routing-preview.pl (-2 lines)
Lines 137-143 $template->param( Link Here
137
    subscriptionid => $subscriptionid,
137
    subscriptionid => $subscriptionid,
138
    memberloop => $memberloop,
138
    memberloop => $memberloop,
139
    routingnotes => $routingnotes,
139
    routingnotes => $routingnotes,
140
    generalroutingnote => C4::Context->preference('RoutingListNote'),
141
    hasRouting => check_routing($subscriptionid),
140
    hasRouting => check_routing($subscriptionid),
142
    (uc(C4::Context->preference("marcflavour"))) => 1
141
    (uc(C4::Context->preference("marcflavour"))) => 1
143
    );
142
    );
144
- 

Return to bug 21552