From db4a19b5dc5f69e8be8315f19ff315620ffeed49 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 9 Oct 2019 08:28:32 -0400 Subject: [PATCH] Bug 23626: Add missing TT failure Signed-off-by: Kyle M Hall --- .../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 3bd9794a36..cbb846a8cf 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 @@ -1161,7 +1161,7 @@ canned reports and writing custom SQL reports.

$(document).ready(function(){ $("body").on('click',".fetch_chart_data",function(){ - if( [% unlimited_total %] > 1000 ){ + if( [% unlimited_total | $raw %] > 1000 ){ if( confirm("Fetching full chart data for reports with many rows can cause performance issues. Are you sure you with to chart this report?") ){ return true; } else { -- 2.21.0 (Apple Git-122)