From f806896276a6c9abe5ee4360d1b8e226bbfd86ab Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 27 Aug 2024 12:53:49 +0200 Subject: [PATCH] Bug 37745: (bug 35402 follow-up) Fix "Rows per page" dropdown items There were 2 class attributes. Test plan: Create a new report and run it Use the "Rows per page" dropdown to select another value => Without this patch nothing happens => With this patch applied the page is reloaded and the correct number of rows is displayed --- .../prog/en/modules/reports/guided_reports_start.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 3a4ca5778c5..99bacfa3e9b 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 @@ -1128,11 +1128,11 @@ [% FOREACH l IN limits %] [% IF l == limit %]
  • - [% l | html %] + [% l | html %]
  • [% ELSE %]
  • - [% l | html %] + [% l | html %]
  • [% END %] [% END %] -- 2.34.1