From 4c8a9e14a86c6f36b14d909d4f0204c248bd1288 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Wed, 7 May 2008 14:38:43 -0500 Subject: [PATCH] guided reports: make it possible to delete saved reports Fixed JavaScript error that prevented user from deleting a saved SQL. Signed-off-by: Joshua Ferraro --- .../prog/en/modules/reports/guided_reports_start.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tmpl index 83429dbc51..3e917eae80 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tmpl @@ -10,7 +10,7 @@ $(document).ready(function(){ $(".confirmdelete").click(function(){ $(this).parents('tr').attr("class","warn"); if(confirm("Are you sure you want to "+$(this).attr("title")+"?")){ - return false; + return true; } else { $(this).parents('tr').attr("class",""); return false; -- 2.39.2