From 3dfe603a4f82105cc335673d4e54d97ec153099a Mon Sep 17 00:00:00 2001 From: Katrin Fischer <Katrin.Fischer.83@web.de> Date: Sun, 6 Jul 2014 19:04:15 +0200 Subject: [PATCH] Bug 12062: Follow up - adds missing ) With this patch, patches pass QA script and unit tests. Tested printing different slips successfully. --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/printslip.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/printslip.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/printslip.tt index 7fc56fb..b14ed28 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/printslip.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/printslip.tt @@ -1,10 +1,10 @@ [% USE Koha %] [% INCLUDE 'doc-head-open.inc' %] -[% IF ( caller = 'hold-transfer' %] +[% IF ( caller = 'hold-transfer' ) %] <title>Koha › Circulation › Hold transfer print receipt</title> -[% ELSIF ( caller == 'transfer' %] +[% ELSIF ( caller == 'transfer' ) %] <title>Koha › Circulation › Transfers print receipt</title> -[% ELSIF ( caller == 'members' %] +[% ELSIF ( caller == 'members' ) %] <title>Koha › Members › Print receipt for [% borrowernumber %]</title> [% END %] -- 1.9.1