From ba49e7146fb4c7fad5e81360faa95306f45da600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9verine=20QUEUNE?= Date: Tue, 5 Apr 2022 13:09:08 +0000 Subject: [PATCH] Bug 29312: Remove unnecessary point This patch removes an extra point after the number of shown results. Test plan : - don't apply patch - run a report that brings you more than 20 results, e.g. SELECT * FROM biblio LIMIT 50 - see extra ' .' after the number of shown results - apply patch - run the report again and see the point isn't displayed anymore - check the behaviour is still correct when you change the number of rows displayed - sign off ! --- .../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 c962ff3fd2..2d5e8585f4 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 @@ -909,7 +909,7 @@ [% unlimited_total | html %] [% IF unlimited_total >= limit %] ([% limit | html %] shown) - [% END %]. + [% END %]

[% END %] -- 2.30.2