@@ -, +, @@ in reports svc endpoint 1 - Write a report 2 - Click the svc link in the saved reports list 3 - ISE 4 - Make report public 5 - Click the svc link in saved reports list 6 - ISE 7 - Apply patch 8 - Comfirm opac/public link works 9 - Make report not public --- opac/svc/report | 2 +- svc/report | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) --- a/opac/svc/report +++ a/opac/svc/report @@ -24,7 +24,7 @@ use Modern::Perl; use C4::Output qw(output_with_http_headers); -use C4::Reports::Guided; +use C4::Reports::Guided qw( execute_query ); use Koha::Reports; use JSON; use CGI qw ( -utf8 ); --- a/svc/report +++ a/svc/report @@ -20,8 +20,8 @@ use Modern::Perl; -use C4::Auth; -use C4::Reports::Guided; +use C4::Auth qw( get_template_and_user ); +use C4::Reports::Guided qw( execute_query ); use Koha::Reports; use JSON; use CGI qw ( -utf8 ); --