From b04d988ed3ad5db1fd7c0ce7bdc7165125a73f64 Mon Sep 17 00:00:00 2001 From: Didier Gautheron Date: Thu, 13 Apr 2023 08:03:40 +0200 Subject: [PATCH] Bug 33513: (follow-up) Remove whitespace in batch report lists MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit BugĀ 32368 added whitespaces, remove them. To test: 1 - Create a report like: SELECT biblionumber FROM biblio 2 - Run it 3 - Try the various options from the 'Batch operations' button 4 - The operations don't find the biblios 5 - Create a report like: SELECT cardnumber FROM borrowers 6 - Run it 7 - Test the batch operations 8 - They fail 9 - Apply patch 10 - Run each report again and test batch operations 11 - They work! Signed-off-by: David Nind --- .../prog/en/modules/reports/guided_reports_start.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt index cc14f25773..831c558613 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt @@ -1013,7 +1013,7 @@ [%- FOREACH cells IN result.cells %] [%- place = loop.index %] [%- IF header_row.$place.cell == batch_type || header_types.item(header_row.$place.cell) == batch_type %] - [%# We must not add whitespace to the cardnumbers %][% cells.cell | html %] +[%# We must not add whitespace to the cardnumbers %][% cells.cell | html %] [%- END %] [%- END %] [%- END -%] -- 2.30.2