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

(-)a/C4/Utils/DataTables/Members.pm (+1 lines)
Lines 194-199 sub search { Link Here
194
        ($orderby ? $orderby : ""),
194
        ($orderby ? $orderby : ""),
195
        ($limit ? $limit : "")
195
        ($limit ? $limit : "")
196
    );
196
    );
197
    warn $query;
197
    $sth = $dbh->prepare($query);
198
    $sth = $dbh->prepare($query);
198
    $sth->execute(@where_args);
199
    $sth->execute(@where_args);
199
    my $patrons = $sth->fetchall_arrayref({});
200
    my $patrons = $sth->fetchall_arrayref({});
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/common/patron_search.tt (-7 / +2 lines)
Lines 201-212 Link Here
201
                    [% END %]
201
                    [% END %]
202
                ],
202
                ],
203
                'bAutoWidth': false,
203
                'bAutoWidth': false,
204
                [% IF patrons_with_acq_perm_only %]
204
                'sPaginationType': 'full_numbers',
205
                    'bPaginate': false,
205
                "iDisplayLength": [% Koha.Preference('PatronsPerPage') | html %],
206
                [% ELSE %]
207
                    'sPaginationType': 'full_numbers',
208
                    "iDisplayLength": [% Koha.Preference('PatronsPerPage') | html %],
209
                [% END %]
210
                'aaSorting': [[[% aaSorting || 0 | html %], 'asc']],
206
                'aaSorting': [[[% aaSorting || 0 | html %], 'asc']],
211
                'bFilter': false,
207
                'bFilter': false,
212
                'bProcessing': true,
208
                'bProcessing': true,
213
- 

Return to bug 24964