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

(-)a/C4/Search.pm (-1 lines)
Lines 2256-2262 sub searchResults { Link Here
2256
            }
2256
            }
2257
        }
2257
        }
2258
        $oldbiblio->{norequests} = 1 unless $can_place_holds;
2258
        $oldbiblio->{norequests} = 1 unless $can_place_holds;
2259
        $oldbiblio->{itemsplural}          = 1 if $items_count > 1;
2260
        $oldbiblio->{items_count}          = $items_count;
2259
        $oldbiblio->{items_count}          = $items_count;
2261
        $oldbiblio->{available_items_loop} = \@available_items_loop;
2260
        $oldbiblio->{available_items_loop} = \@available_items_loop;
2262
        $oldbiblio->{onloan_items_loop}    = \@onloan_items_loop;
2261
        $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 Koha %]
2
[% USE Koha %]
3
[% USE Biblio %]
3
[% USE Biblio %]
4
[% USE KohaDates %]
4
[% USE KohaDates %]
5
[% PROCESS 'i18n.inc' %]
5
[% SET footerjs = 1 %]
6
[% SET footerjs = 1 %]
6
[% USE AuthorisedValues %]
7
[% USE AuthorisedValues %]
7
[% IF BiblioDefaultViewmarc %]
8
[% IF BiblioDefaultViewmarc %]
Lines 483-489 Link Here
483
                                                <span class="blocker inaccurate-item-statuses" title="Item statuses may be inaccurate. Please view the record details for accurate item statuses">
484
                                                <span class="blocker inaccurate-item-statuses" title="Item statuses may be inaccurate. Please view the record details for accurate item statuses">
484
                                            [% END %]
485
                                            [% END %]
485
486
486
                                            [% SEARCH_RESULT.items_count %] [% IF ( SEARCH_RESULT.itemsplural ) %]items[% ELSE %]item[% END %][% IF ( SEARCH_RESULT.availablecount ) %], [% SEARCH_RESULT.availablecount %] available:[% ELSE %], None available[% END %]
487
                                            [% tnx('{count} item', '{count} items', SEARCH_RESULT.items_count, {count = SEARCH_RESULT.items_count}) %][% IF ( SEARCH_RESULT.availablecount ) %], [% SEARCH_RESULT.availablecount %] available:[% ELSE %], None available[% END %]
487
488
488
                                            [% IF MaxSearchResultsItemsPerRecordStatusCheck && SEARCH_RESULT.items_count > MaxSearchResultsItemsPerRecordStatusCheck %]
489
                                            [% IF MaxSearchResultsItemsPerRecordStatusCheck && SEARCH_RESULT.items_count > MaxSearchResultsItemsPerRecordStatusCheck %]
489
                                                </span>
490
                                                </span>
490
- 

Return to bug 15395