From 4f8f297a23068b5cb5456138bb494f7793c57c33 Mon Sep 17 00:00:00 2001 From: Nahuel ANGELINETTI Date: Fri, 12 Dec 2008 11:56:19 +0100 Subject: [PATCH] (bug #2862) improve sql reports Clear all non-alphanum chars at the end of an sql query. Use ESCAPE=HTML to escape double quotes in csv export Signed-off-by: Galen Charlton --- C4/Reports/Guided.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Reports/Guided.pm b/C4/Reports/Guided.pm index ce5876e268..5df6c2a5f4 100644 --- a/C4/Reports/Guided.pm +++ b/C4/Reports/Guided.pm @@ -483,6 +483,7 @@ Given some sql and a name this will saved it so that it can resued sub save_report { my ( $sql, $name, $type, $notes ) = @_; my $dbh = C4::Context->dbh(); + $sql =~ s/(\W*)$//; my $query = "INSERT INTO saved_sql (borrowernumber,date_created,last_modified,savedsql,report_name,type,notes) VALUES (?,now(),now(),?,?,?,?)"; my $sth = $dbh->prepare($query); -- 2.39.5