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

(-)a/acqui/add_user_search.pl (+1 lines)
Lines 63-67 $template->param( Link Here
63
    alphabet        => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ),
63
    alphabet        => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ),
64
    categories      => [ C4::Category->all ],
64
    categories      => [ C4::Category->all ],
65
    branches        => [ map { { branchcode => $_->{branchcode}, branchname => $_->{branchname} } } values %$branches ],
65
    branches        => [ map { { branchcode => $_->{branchcode}, branchname => $_->{branchname} } } values %$branches ],
66
    aaSorting       => 1,
66
);
67
);
67
output_html_with_http_headers( $input, $cookie, $template->output );
68
output_html_with_http_headers( $input, $cookie, $template->output );
(-)a/admin/add_user_search.pl (+1 lines)
Lines 64-68 $template->param( Link Here
64
    alphabet        => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ),
64
    alphabet        => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ),
65
    categories      => [ C4::Category->all ],
65
    categories      => [ C4::Category->all ],
66
    branches        => [ map { { branchcode => $_->{branchcode}, branchname => $_->{branchname} } } values %$branches ],
66
    branches        => [ map { { branchcode => $_->{branchcode}, branchname => $_->{branchname} } } values %$branches ],
67
    aaSorting       => 1,
67
);
68
);
68
output_html_with_http_headers( $input, $cookie, $template->output );
69
output_html_with_http_headers( $input, $cookie, $template->output );
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/common/patron_search.tt (+1 lines)
Lines 90-95 $(document).ready(function(){ Link Here
90
            'sPaginationType': 'full_numbers',
90
            'sPaginationType': 'full_numbers',
91
            "iDisplayLength": [% Koha.Preference('PatronsPerPage') %],
91
            "iDisplayLength": [% Koha.Preference('PatronsPerPage') %],
92
        [% END %]
92
        [% END %]
93
        'aaSorting': [[[% aaSorting || 0 %], 'asc']],
93
        'bFilter': false,
94
        'bFilter': false,
94
        'bProcessing': true,
95
        'bProcessing': true,
95
    }));
96
    }));
(-)a/members/guarantor_search.pl (+1 lines)
Lines 55-59 $template->param( Link Here
55
    alphabet        => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ),
55
    alphabet        => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ),
56
    categories      => [ C4::Category->all ],
56
    categories      => [ C4::Category->all ],
57
    branches        => [ map { { branchcode => $_->{branchcode}, branchname => $_->{branchname} } } values %$branches ],
57
    branches        => [ map { { branchcode => $_->{branchcode}, branchname => $_->{branchname} } } values %$branches ],
58
    aaSorting       => 1,
58
);
59
);
59
output_html_with_http_headers( $input, $cookie, $template->output );
60
output_html_with_http_headers( $input, $cookie, $template->output );
(-)a/patroncards/add_user_search.pl (+1 lines)
Lines 55-59 $template->param( Link Here
55
    alphabet        => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ),
55
    alphabet        => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ),
56
    categories      => [ C4::Category->all ],
56
    categories      => [ C4::Category->all ],
57
    branches        => [ map { { branchcode => $_->{branchcode}, branchname => $_->{branchname} } } values %$branches ],
57
    branches        => [ map { { branchcode => $_->{branchcode}, branchname => $_->{branchname} } } values %$branches ],
58
    aaSorting       => 1,
58
);
59
);
59
output_html_with_http_headers( $input, $cookie, $template->output );
60
output_html_with_http_headers( $input, $cookie, $template->output );
(-)a/serials/add_user_search.pl (-1 / +1 lines)
Lines 55-59 $template->param( Link Here
55
    alphabet        => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ),
55
    alphabet        => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ),
56
    categories      => [ C4::Category->all ],
56
    categories      => [ C4::Category->all ],
57
    branches        => [ map { { branchcode => $_->{branchcode}, branchname => $_->{branchname} } } values %$branches ],
57
    branches        => [ map { { branchcode => $_->{branchcode}, branchname => $_->{branchname} } } values %$branches ],
58
    aaSorting       => 1,
58
);
59
);
59
output_html_with_http_headers( $input, $cookie, $template->output );
60
output_html_with_http_headers( $input, $cookie, $template->output );
60
- 

Return to bug 15109