From 7811195fcd613442e30d86749bbe5cd250eb9cfc Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 10 Oct 2018 16:30:15 +0000 Subject: [PATCH] Bug 21541: Use raw filter for report results To test: 1 - Create new report SELECT CONCAT('',"",firstname,"",surname,'') AS people FROM borrowers 2 - Run this report 3 - Note the results contain raw text, they are not hyperlinks 4 - Apply patch 5 - Reload the results 6 - They should now be links Signed-off-by: Katrin Fischer https://bugs.koha-community.org/show_bug.cgi?id=20260 --- koha-tmpl/intranet-tmpl/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 62005e6..f432cf0 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 @@ -747,7 +747,7 @@ canned reports and writing custom SQL reports.

[% IF header_row.$place.cell == 'itemnumber' %] [% END %] - [% cells.cell | html %] + [% cells.cell | $raw %] [% END %] [% END %] -- 2.1.4