From 2ed672c8ce0d44b490039edc9b2d5bdb8eda3146 Mon Sep 17 00:00:00 2001 From: Leo Stoyanov Date: Mon, 6 Jan 2025 19:05:45 -0600 Subject: [PATCH] Bug 37927: Fixed report name on page title not showing up when viewing SQL To test: 1. Create a SQL report. 2. Go to /cgi-bin/koha/reports/guided_reports.pl?id=1&op=show. 3. Inspect element the page, go to the head, and find the title; it should have no report name or id. 4. Apply patch. 5. Redo steps 1-3 to see the fix. --- .../prog/en/modules/reports/guided_reports_start.tt | 1 + 1 file changed, 1 insertion(+) 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 98a96b8071..cdba5aad88 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 @@ -28,6 +28,7 @@ [% ELSIF ( create ) %] [% t("Create from SQL") | html %] › [% ELSIF ( showsql ) %] + [% tx("Show report {reportname} ({id})", { reportname = reportname, id = id }) | html %] › [% t("SQL view") | html %] › [% t("Saved reports") | html %] › [% ELSIF ( execute ) %] -- 2.39.5