@@ -, +, @@ - Add a subscription - Add a new routing list to it - Add some patrons to it - Save - preview routing list - Verify that the note shows and is formatted correctly. --- .../intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt | 4 +++- serials/routing-preview.pl | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt @@ -1,3 +1,5 @@ +[% USE Koha %] +[% USE raw %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › Serials › Routing slip preview @@ -30,7 +32,7 @@
-

[% generalroutingnote | html %]

+

[% Koha.Preference('RoutingListNote') | $raw %]

[% routingnotes | html %]

--- a/serials/routing-preview.pl +++ a/serials/routing-preview.pl @@ -137,7 +137,6 @@ $template->param( subscriptionid => $subscriptionid, memberloop => $memberloop, routingnotes => $routingnotes, - generalroutingnote => C4::Context->preference('RoutingListNote'), hasRouting => check_routing($subscriptionid), (uc(C4::Context->preference("marcflavour"))) => 1 ); --