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

(-)a/C4/Reports/Guided.pm (-1 / +1 lines)
Lines 559-565 sub execute_query { Link Here
559
    my $params     = shift;
559
    my $params     = shift;
560
    my $sql        = $params->{sql};
560
    my $sql        = $params->{sql};
561
    my $offset     = $params->{offset} || 0;
561
    my $offset     = $params->{offset} || 0;
562
    my $limit      = $params->{limit}  || 999999;
562
    my $limit      = $params->{limit}  || C4::Context->config('report_results_limit') || 999999;
563
    my $sql_params = defined $params->{sql_params} ? $params->{sql_params} : [];
563
    my $sql_params = defined $params->{sql_params} ? $params->{sql_params} : [];
564
    my $report_id  = $params->{report_id};
564
    my $report_id  = $params->{report_id};
565
565
(-)a/debian/templates/koha-conf-site.xml.in (+4 lines)
Lines 304-309 __END_SRU_PUBLICSERVER__ Link Here
304
 <!-- Secret passphrase used by Mojolicious for signed cookies -->
304
 <!-- Secret passphrase used by Mojolicious for signed cookies -->
305
 <api_secret_passphrase>__API_SECRET__</api_secret_passphrase>
305
 <api_secret_passphrase>__API_SECRET__</api_secret_passphrase>
306
306
307
 <!-- default report results limit is 999,999. uncomment this and set a different number to override that limit.
308
 <report_results_limit>999999</report_results_limit>
309
 -->
310
307
 <!-- Accessible directory from the staff interface, uncomment the following line and define a valid path to let the intranet user access it-->
311
 <!-- Accessible directory from the staff interface, uncomment the following line and define a valid path to let the intranet user access it-->
308
 <!--
312
 <!--
309
 <access_dirs>
313
 <access_dirs>
(-)a/etc/koha-conf.xml (-1 / +4 lines)
Lines 121-126 Link Here
121
 <!-- Secret passphrase used by Mojolicious for signed cookies -->
121
 <!-- Secret passphrase used by Mojolicious for signed cookies -->
122
 <api_secret_passphrase>CHANGEME</api_secret_passphrase>
122
 <api_secret_passphrase>CHANGEME</api_secret_passphrase>
123
123
124
 <!-- default report results limit is 999,999. uncomment this and set a different number to override that limit.
125
 <report_results_limit>999999</report_results_limit>
126
 -->
127
124
 <!-- Accessible directory from the staff client, uncomment the following line and define a valid path to let the intranet user access it-->
128
 <!-- Accessible directory from the staff client, uncomment the following line and define a valid path to let the intranet user access it-->
125
 <!--
129
 <!--
126
 <access_dirs>
130
 <access_dirs>
127
- 

Return to bug 31276