From 9237da6e8e3558c5a3b06bcffcc5aa8c2b778cfd Mon Sep 17 00:00:00 2001 From: Llewellyn Marshall Date: Thu, 18 Jun 2020 10:46:24 -0400 Subject: [PATCH] fixed a syntax error (cherry picked from commit 9c047b3b826ed306ad659ef5430b549871d1f66a) --- Open-ILS/src/perlmods/lib/OpenILS/Application/Reporter.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Reporter.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Reporter.pm index b4182d78f5..630db3bde0 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Reporter.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Reporter.pm @@ -260,7 +260,7 @@ sub sql_export { # where are the params going to come from? # my $report_data = OpenSRF::Utils::JSON->JSON2perl( $t->{report}->{data} ); # $b->register_params( $report_data ); - $rs = $b->parse_report( OpenSRF::Utils::JSON->JSON2perl( $t->{data} ) ); + my $rs = $b->parse_report( OpenSRF::Utils::JSON->JSON2perl( $t->{data} ) ); return $rs->toSQL; } -- 2.11.0