From 67ecc16878e06038ee10992607609ef286a9d6e5 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 24 Mar 2016 21:28:21 +0000 Subject: [PATCH] Bug 16145: Regression: Bug 15632 broke display of library name on circulation messages Wrong var loop used! Test plan: Add a message for a patron on the checkouts page. The library name should be displayed. Signed-off-by: Christopher Brannon --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index eaae5d7..d0132e0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -845,7 +845,7 @@ No patron matched [% message %]
  • [% message.message_date | $KohaDates %] - [% Branches.GetName( lib_messages_loo.branchcode ) %] + [% Branches.GetName( message.branchcode ) %] "[% message.message %]" [% IF message.branchcode == branch OR Koha.Preference('AllowAllMessageDeletion') %] -- 1.7.10.4