From b5a3d5839cb51380d7d312df193af6bf7e3a6adb Mon Sep 17 00:00:00 2001 From: Llewellyn Marshall Date: Thu, 18 Jun 2020 13:32:07 -0400 Subject: [PATCH] fix syntax error (cherry picked from commit 9730bb513142559be50374f716dfb543149baf1e) --- 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 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; } -- 2.11.0