From 376cdc546d9a518c92b370a7925e9f854e74a272 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sat, 30 Mar 2013 21:48:27 +0100 Subject: [PATCH] Bug 9535: Follow-up - making QA script and tests happy - 2x single quotes for translated string in edit-batch.tt http://bugs.koha-community.org/show_bug.cgi?id=9697 --- .../prog/en/modules/patroncards/edit-batch.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt index 51b585a..f8c18c5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt @@ -72,10 +72,10 @@ alert(_("Please select at least one card to export.")); return; // no batch selected } - return GB_showCenter(_('Export labels'), "/cgi-bin/koha/patroncards/print.pl?batch_id=[% batch_id %]&" + getstr, 700, 800); + return GB_showCenter(_("Export labels"), "/cgi-bin/koha/patroncards/print.pl?batch_id=[% batch_id %]&" + getstr, 700, 800); } else if (mode == 'batch') { - return GB_showCenter(_('Export labels'), "/cgi-bin/koha/patroncards/print.pl?batch_id=[% batch_id %]", 700, 800); + return GB_showCenter(_("Export labels"), "/cgi-bin/koha/patroncards/print.pl?batch_id=[% batch_id %]", 700, 800); } else { // some pass-thru error trapping just in case... -- 1.7.9.5