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

(-)a/C4/Search.pm (-1 lines)
Lines 2257-2263 sub searchResults { Link Here
2257
            }
2257
            }
2258
        }
2258
        }
2259
        $oldbiblio->{norequests} = 1 unless $can_place_holds;
2259
        $oldbiblio->{norequests} = 1 unless $can_place_holds;
2260
        $oldbiblio->{itemsplural}          = 1 if $items_count > 1;
2261
        $oldbiblio->{items_count}          = $items_count;
2260
        $oldbiblio->{items_count}          = $items_count;
2262
        $oldbiblio->{available_items_loop} = \@available_items_loop;
2261
        $oldbiblio->{available_items_loop} = \@available_items_loop;
2263
        $oldbiblio->{onloan_items_loop}    = \@onloan_items_loop;
2262
        $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
[% IF BiblioDefaultViewmarc %]
9
[% IF BiblioDefaultViewmarc %]
Lines 484-490 Link Here
484
                                                <span class="blocker inaccurate-item-statuses" title="Item statuses may be inaccurate. Please view the record details for accurate item statuses">
485
                                                <span class="blocker inaccurate-item-statuses" title="Item statuses may be inaccurate. Please view the record details for accurate item statuses">
485
                                            [% END %]
486
                                            [% END %]
486
487
487
                                            [% 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 %]
488
                                            [% 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 %]
488
489
489
                                            [% IF MaxSearchResultsItemsPerRecordStatusCheck && SEARCH_RESULT.items_count > MaxSearchResultsItemsPerRecordStatusCheck %]
490
                                            [% IF MaxSearchResultsItemsPerRecordStatusCheck && SEARCH_RESULT.items_count > MaxSearchResultsItemsPerRecordStatusCheck %]
490
                                                </span>
491
                                                </span>
491
- 

Return to bug 15395