From c8f929b20b60a4dc788ccc43b9b9b32e88361fd5 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 dot 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 ! Signed-off-by: David Nind Signed-off-by: Jonathan Druart --- .../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 72534100949..e93e13aa6f1 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 @@ -913,7 +913,7 @@ [% unlimited_total | html %] [% IF unlimited_total >= limit %] ([% limit | html %] shown) - [% END %]. + [% END %]

[% END %] -- 2.25.1