From 5626647a474712797366e33e66c1ec1600f8eed5 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 17 Apr 2015 09:51:03 -0400 Subject: [PATCH] Bug 13022 [QA Followup] - Allow the pref to be unset for unlimited item status checks --- C4/Search.pm | 1 + .../en/modules/admin/preferences/searching.pref | 4 +++- 2 files changed, 4 insertions(+), 1 deletions(-) diff --git a/C4/Search.pm b/C4/Search.pm index eb978dc..3ddb27d 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -2139,6 +2139,7 @@ sub searchResults { || $item->{itemlost} || $item->{damaged} || $item->{notforloan} + || !C4::Context->preference('MaxSearchResultsItemsPerRecordStatusCheck') || $items_count > C4::Context->preference('MaxSearchResultsItemsPerRecordStatusCheck') ) { # A couple heuristics to limit how many times diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref index a7c39bf..c5c00a9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref @@ -152,7 +152,9 @@ Searching: - For records with many items, only check the availability status for the first - pref: MaxSearchResultsItemsPerRecordStatusCheck class: integer - - 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. + - 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. + -
Leave empty for no limit on the number of items for which to check the status. - - By default, sort search results in the OPAC by - pref: OPACdefaultSortField -- 1.7.2.5