Bug 14648: (QA follow-up) Add missing filters
authorKatrin Fischer <katrin.fischer.83@web.de>
Thu, 17 Sep 2020 09:22:39 +0000 (09:22 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 1 Oct 2020 08:33:10 +0000 (10:33 +0200)
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/batch_rm_items.tt

index a1b415b..ecd3b8b 100644 (file)
@@ -43,9 +43,9 @@
                 <ul>
                     [% FOREACH i IN item_and_count %]
                       [% IF i.delcount == 1 %]
-                          <li>[% i.delitem.biblio.title | html %] ([% i.delitem.barcode | html %]) was removed from [% i.delcount %] course.</li>
+                          <li>[% i.delitem.biblio.title | html %] ([% i.delitem.barcode | html %]) was removed from [% i.delcount | html %] course.</li>
                       [% ELSIF i.delcount > 1 %]
-                          <li>[% i.delitem.biblio.title | html %] ([% i.delitem.barcode | html %]) was removed from [% i.delcount %] courses.</li>
+                          <li>[% i.delitem.biblio.title | html %] ([% i.delitem.barcode | html %]) was removed from [% i.delcount | html %] courses.</li>
                       [% END %]
                     [% END %]
                 </ul>