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

(-)a/C4/Search.pm (-1 lines)
Lines 2259-2265 sub searchResults { Link Here
2259
            }
2259
            }
2260
        }
2260
        }
2261
        $oldbiblio->{norequests} = 1 unless $can_place_holds;
2261
        $oldbiblio->{norequests} = 1 unless $can_place_holds;
2262
        $oldbiblio->{itemsplural}          = 1 if $items_count > 1;
2263
        $oldbiblio->{items_count}          = $items_count;
2262
        $oldbiblio->{items_count}          = $items_count;
2264
        $oldbiblio->{available_items_loop} = \@available_items_loop;
2263
        $oldbiblio->{available_items_loop} = \@available_items_loop;
2265
        $oldbiblio->{onloan_items_loop}    = \@onloan_items_loop;
2264
        $oldbiblio->{onloan_items_loop}    = \@onloan_items_loop;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-2 / +2 lines)
Lines 3-8 Link Here
3
[% USE Koha %]
3
[% USE Koha %]
4
[% USE Biblio %]
4
[% USE Biblio %]
5
[% USE KohaDates %]
5
[% USE KohaDates %]
6
[% PROCESS 'i18n.inc' %]
6
[% SET footerjs = 1 %]
7
[% SET footerjs = 1 %]
7
[% USE AuthorisedValues %]
8
[% USE AuthorisedValues %]
8
[% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %]
9
[% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %]
Lines 490-496 Link Here
490
                                                <span class="blocker inaccurate-item-statuses" title="Item statuses may be inaccurate. Please view the record details for accurate item statuses">
491
                                                <span class="blocker inaccurate-item-statuses" title="Item statuses may be inaccurate. Please view the record details for accurate item statuses">
491
                                            [% END %]
492
                                            [% END %]
492
493
493
                                            [% SEARCH_RESULT.items_count | html %] [% IF ( SEARCH_RESULT.itemsplural ) %]items[% ELSE %]item[% END %][% IF ( SEARCH_RESULT.availablecount ) %], [% SEARCH_RESULT.availablecount | html %] available:[% ELSE %], None available[% END %]
494
                                            [% tnx('{count} item', '{count} items', SEARCH_RESULT.items_count, {count = SEARCH_RESULT.items_count}) | html %][% IF ( SEARCH_RESULT.availablecount ) %], [% SEARCH_RESULT.availablecount | html %] available:[% ELSE %], None available[% END %]
494
495
495
                                            [% IF MaxSearchResultsItemsPerRecordStatusCheck && SEARCH_RESULT.items_count > MaxSearchResultsItemsPerRecordStatusCheck %]
496
                                            [% IF MaxSearchResultsItemsPerRecordStatusCheck && SEARCH_RESULT.items_count > MaxSearchResultsItemsPerRecordStatusCheck %]
496
                                                </span>
497
                                                </span>
497
- 

Return to bug 21789