@@ -, +, @@ 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 --- koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ a/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 %] --