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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc (-1 / +3 lines)
Lines 766-772 Link Here
766
                parent_block.find(".searchpattern").parent().hide();
766
                parent_block.find(".searchpattern").parent().hide();
767
            });
767
            });
768
768
769
            if ( !defer_loading ) {
769
            let table_dt = patrons_table.DataTable();
770
            let loaded_from_state = table_dt.settings()[0].loaded_from_state;
771
            if ( !defer_loading || loaded_from_state ) {
770
                patron_search_form.submit();
772
                patron_search_form.submit();
771
            }
773
            }
772
774
(-)a/members/members-home.pl (-2 / +1 lines)
Lines 73-79 $template->param( Link Here
73
    PatronAutoComplete => C4::Context->preference('PatronAutoComplete'),
73
    PatronAutoComplete => C4::Context->preference('PatronAutoComplete'),
74
    patron_lists => [ GetPatronLists() ],
74
    patron_lists => [ GetPatronLists() ],
75
    PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20,
75
    PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20,
76
    defer_loading => ( scalar $query->param('memberresultst_state') ) ? 0 : 1,
76
    defer_loading => 1,
77
);
77
);
78
78
79
output_html_with_http_headers $query, $cookie, $template->output;
79
output_html_with_http_headers $query, $cookie, $template->output;
80
- 

Return to bug 33484