View | Details | Raw Unified | Return to bug 37595
Collapse All | Expand All

(-)a/reports/guided_reports.pl (-4 / +3 lines)
Lines 971-982 if ($op eq 'run'){ Link Here
971
                }
971
                }
972
972
973
                my $totpages = int($total/$limit) + (($total % $limit) > 0 ? 1 : 0);
973
                my $totpages = int($total/$limit) + (($total % $limit) > 0 ? 1 : 0);
974
                my $url = "/cgi-bin/koha/reports/guided_reports.pl?id=$report_id&op=run&limit=$limit&want_full_chart=$want_full_chart";
974
                my $url = "/cgi-bin/koha/reports/guided_reports.pl?id=$report_id&op=run&limit=$limit&want_full_chart=$want_full_chart";
975
                if (@param_names) {
975
                if (@param_names) {
976
                    $url = join('&param_name=', $url, map { URI::Escape::uri_escape_utf8($_) } @param_names);
976
                    $url = join('&param_name=', $url, map { URI::Escape::uri_escape_utf8($_) } @param_names);
977
                }
977
                }
978
                if (@sql_params) {
978
                if (@sql_params) {
979
                    $url = join('&sql_params=', $url, map { URI::Escape::uri_escape_utf8($_) } @sql_params);
979
                    $url = join('&sql_params=', $url, map { URI::Escape::uri_escape_utf8($_) } @sql_params);
980
                }
980
                }
981
981
982
                if ($template_id) {
982
                if ($template_id) {
983
- 

Return to bug 37595