From: Llewellyn Marshall Date: Thu, 18 Jun 2020 17:32:07 +0000 (-0400) Subject: fix syntax error X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b5a3d5839cb51380d7d312df193af6bf7e3a6adb;p=working%2FEvergreen.git fix syntax error (cherry picked from commit 9730bb513142559be50374f716dfb543149baf1e) --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Reporter.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Reporter.pm index 22a77fc5ca..e3785ab225 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Reporter.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Reporter.pm @@ -261,7 +261,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 ); - my $rs = $b->parse_report( OpenSRF::Utils::JSON->JSON2perl( $t->{data} ) ); + my $rs = $b->parse_report( OpenSRF::Utils::JSON->JSON2perl( $t->data ) ); return $rs->toSQL; }