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

(-)a/C4/Search.pm (+1 lines)
Lines 2139-2144 sub searchResults { Link Here
2139
                        || $item->{itemlost}
2139
                        || $item->{itemlost}
2140
                        || $item->{damaged}
2140
                        || $item->{damaged}
2141
                        || $item->{notforloan}
2141
                        || $item->{notforloan}
2142
                        || !C4::Context->preference('MaxSearchResultsItemsPerRecordStatusCheck')
2142
                        || $items_count > C4::Context->preference('MaxSearchResultsItemsPerRecordStatusCheck') ) {
2143
                        || $items_count > C4::Context->preference('MaxSearchResultsItemsPerRecordStatusCheck') ) {
2143
2144
2144
                    # A couple heuristics to limit how many times
2145
                    # A couple heuristics to limit how many times
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref (-2 / +3 lines)
Lines 152-158 Searching: Link Here
152
            - For records with many items, only check the availability status for the first
152
            - For records with many items, only check the availability status for the first
153
            - pref: MaxSearchResultsItemsPerRecordStatusCheck
153
            - pref: MaxSearchResultsItemsPerRecordStatusCheck
154
              class: integer
154
              class: integer
155
            - items. If a record has more than this number of items, they availability statuses may be incorrect in the search results, but will be correct in the record details.
155
            - items.
156
            - <br/>If a record has more than this number of items, they availability statuses may be incorrect in the search results, but will be correct in the record details.
157
            - <br/>Leave empty for no limit on the number of items for which to check the status.
156
        -
158
        -
157
            - By default, sort search results in the OPAC by
159
            - By default, sort search results in the OPAC by
158
            - pref: OPACdefaultSortField
160
            - pref: OPACdefaultSortField
159
- 

Return to bug 13022