From: Llewellyn Marshall Date: Thu, 18 Jun 2020 14:46:24 +0000 (-0400) Subject: fixed a syntax error X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9237da6e8e3558c5a3b06bcffcc5aa8c2b778cfd;p=working%2FEvergreen.git fixed a syntax error (cherry picked from commit 9c047b3b826ed306ad659ef5430b549871d1f66a) --- 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; }