From 6edf01d403ee5c3aa99318f1bee6adf4c5673555 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 15 Oct 2021 16:40:54 +0000 Subject: [PATCH] Bug 28445: (follow-up) Display count of modified items when too many to display Signed-off-by: Tomas Cohen Arazi --- .../includes/background_jobs/batch_item_record_modification.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/background_jobs/batch_item_record_modification.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/background_jobs/batch_item_record_modification.inc index 4d4fed19fb..37546d29cc 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/background_jobs/batch_item_record_modification.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/background_jobs/batch_item_record_modification.inc @@ -33,7 +33,7 @@ [% END %] [% IF too_many_items_display %] -

Too many items ([% too_many_items_display | html %]): You have edited more than [% Koha.Preference('MaxItemsToDisplayForBatchMod') | html %] items in a batch, items will not be shown.

+

Too many items ([% report.modified_itemnumbers.size | html %]): You have edited more than [% Koha.Preference('MaxItemsToDisplayForBatchMod') | html %] items in a batch, items will not be shown.

[% ELSIF items.size %] [% PROCESS items_table_batchmod headers => item_header_loop, items => items, display_columns_selection => 1 %] [% END %] -- 2.33.1