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 1-6 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% USE Biblio %]
2
[% USE Biblio %]
3
[% USE KohaDates %]
3
[% USE KohaDates %]
4
[% PROCESS 'i18n.inc' %]
4
[% SET footerjs = 1 %]
5
[% SET footerjs = 1 %]
5
[% IF BiblioDefaultViewmarc %]
6
[% IF BiblioDefaultViewmarc %]
6
    [% SET DetailPage="MARCdetail.pl" %]
7
    [% SET DetailPage="MARCdetail.pl" %]
Lines 481-487 Link Here
481
                                                <span class="blocker inaccurate-item-statuses" title="Item statuses may be inaccurate. Please view the record details for accurate item statuses">
482
                                                <span class="blocker inaccurate-item-statuses" title="Item statuses may be inaccurate. Please view the record details for accurate item statuses">
482
                                            [% END %]
483
                                            [% END %]
483
484
484
                                            [% SEARCH_RESULT.items_count %] [% IF ( SEARCH_RESULT.itemsplural ) %]items[% ELSE %]item[% END %][% IF ( SEARCH_RESULT.availablecount ) %], [% SEARCH_RESULT.availablecount %] available:[% ELSE %], None available[% END %]
485
                                            [% SEARCH_RESULT.items_count %] [% tn('item', 'items', SEARCH_RESULT.item_count) %][% IF ( SEARCH_RESULT.availablecount ) %], [% SEARCH_RESULT.availablecount %] available:[% ELSE %], None available[% END %]
485
486
486
                                            [% IF MaxSearchResultsItemsPerRecordStatusCheck && SEARCH_RESULT.items_count > MaxSearchResultsItemsPerRecordStatusCheck %]
487
                                            [% IF MaxSearchResultsItemsPerRecordStatusCheck && SEARCH_RESULT.items_count > MaxSearchResultsItemsPerRecordStatusCheck %]
487
                                                </span>
488
                                                </span>
488
- 

Return to bug 15395