From bee60660169b442c91957d085e90f5d55fa6fe0e Mon Sep 17 00:00:00 2001 From: Didier Gautheron Date: Thu, 13 Apr 2023 08:03:40 +0200 Subject: [PATCH] Bug 33513: Remove whitespace in batch report lists MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 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 Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 0c1d7fe0fb7dca70cd3dd63a64c92803d35a4bb0) Signed-off-by: Matt Blenkinsop --- .../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 8124dd783e..ca526b0723 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 @@ -991,7 +991,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.39.5