From 0e81b387ca987ee439ca1387df535b2eace6cbcb 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 Signed-off-by: Tomas Cohen Arazi --- .../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 62005e6202..f432cf00b0 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.20.1