fix syntax error
authorLlewellyn Marshall <llewellyn.marshall@ncdcr.gov>
Thu, 18 Jun 2020 17:32:07 +0000 (13:32 -0400)
committerLlewellyn Marshall <llewellyn.marshall@ncdcr.gov>
Tue, 17 Aug 2021 13:51:13 +0000 (09:51 -0400)
(cherry picked from commit 9730bb513142559be50374f716dfb543149baf1e)

Open-ILS/src/perlmods/lib/OpenILS/Application/Reporter.pm

index 22a77fc..e3785ab 100644 (file)
@@ -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;
 }