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

(-)a/C4/Search.pm (-1 lines)
Lines 2250-2256 sub searchResults { Link Here
2250
            }
2250
            }
2251
        }
2251
        }
2252
        $oldbiblio->{norequests} = 1 unless $can_place_holds;
2252
        $oldbiblio->{norequests} = 1 unless $can_place_holds;
2253
        $oldbiblio->{itemsplural}          = 1 if $items_count > 1;
2254
        $oldbiblio->{items_count}          = $items_count;
2253
        $oldbiblio->{items_count}          = $items_count;
2255
        $oldbiblio->{available_items_loop} = \@available_items_loop;
2254
        $oldbiblio->{available_items_loop} = \@available_items_loop;
2256
        $oldbiblio->{onloan_items_loop}    = \@onloan_items_loop;
2255
        $oldbiblio->{onloan_items_loop}    = \@onloan_items_loop;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-2 / +2 lines)
Lines 2-7 Link Here
2
[% USE Biblio %]
2
[% USE Biblio %]
3
[% USE KohaDates %]
3
[% USE KohaDates %]
4
[% SET footerjs = 1 %]
4
[% SET footerjs = 1 %]
5
[% PROCESS 'i18n.inc' %]
5
[% IF BiblioDefaultViewmarc %]
6
[% IF BiblioDefaultViewmarc %]
6
    [% SET DetailPage="MARCdetail.pl" %]
7
    [% SET DetailPage="MARCdetail.pl" %]
7
[% ELSIF BiblioDefaultViewlabeled_marc %]
8
[% ELSIF BiblioDefaultViewlabeled_marc %]
Lines 478-484 Link Here
478
                                                <span class="blocker inaccurate-item-statuses" title="Item statuses may be inaccurate. Please view the record details for accurate item statuses">
479
                                                <span class="blocker inaccurate-item-statuses" title="Item statuses may be inaccurate. Please view the record details for accurate item statuses">
479
                                            [% END %]
480
                                            [% END %]
480
481
481
                                            [% SEARCH_RESULT.items_count %] [% IF ( SEARCH_RESULT.itemsplural ) %]items[% ELSE %]item[% END %][% IF ( SEARCH_RESULT.availablecount ) %], [% SEARCH_RESULT.availablecount %] available:[% ELSE %], None available[% END %]
482
                                            [% SEARCH_RESULT.items_count %] [% tn('item', 'items', SEARCH_RESULT.items_count) %][% IF ( SEARCH_RESULT.availablecount ) %], [% SEARCH_RESULT.availablecount %] available:[% ELSE %], None available[% END %]
482
483
483
                                            [% IF MaxSearchResultsItemsPerRecordStatusCheck && SEARCH_RESULT.items_count > MaxSearchResultsItemsPerRecordStatusCheck %]
484
                                            [% IF MaxSearchResultsItemsPerRecordStatusCheck && SEARCH_RESULT.items_count > MaxSearchResultsItemsPerRecordStatusCheck %]
484
                                                </span>
485
                                                </span>
485
- 

Return to bug 15395