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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-2 / +2 lines)
Lines 47-55 Link Here
47
                    [% END %]
47
                    [% END %]
48
                    <li class="breadcrumb-item active">
48
                    <li class="breadcrumb-item active">
49
                        [% IF ( ms_value ) %]
49
                        [% IF ( ms_value ) %]
50
                            <a href="#" aria-current="page" title="You searched [% IF ( query_desc ) %] for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %]">Results of search for '[% ms_value | html %]'</a>
50
                            <a href="#" aria-current="page" title="You searched [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %]">Results of search for '[% ms_value | html %]'[% IF ( pages > 1) %], page [% current_page_number | html %] of [% pages | html %][% END %]</a>
51
                        [% ELSE %]
51
                        [% ELSE %]
52
                            <a href="#" aria-current="page" title="You searched [% IF ( query_desc ) %] for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %]">Search results</a>
52
                            <a href="#" aria-current="page" title="You searched [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %]">Search results</a>
53
                        [% END %]
53
                        [% END %]
54
                    </li>
54
                    </li>
55
                [% ELSE %]
55
                [% ELSE %]
(-)a/opac/opac-search.pl (-2 / +3 lines)
Lines 805-811 for (my $i=0;$i<@servers;$i++) { Link Here
805
                        sort_by           => \@sort_by
805
                        sort_by           => \@sort_by
806
                    }
806
                    }
807
                );
807
                );
808
            $template->param( hits_to_paginate => $hits_to_paginate );
808
            $template->param(   hits_to_paginate => $hits_to_paginate,
809
                                current_page_number => $current_page_number,
810
                                pages => $pages );
809
            $template->param(   PAGE_NUMBERS => $page_numbers,
811
            $template->param(   PAGE_NUMBERS => $page_numbers,
810
                                last_page_offset => $last_page_offset,
812
                                last_page_offset => $last_page_offset,
811
                                previous_page_offset => $previous_page_offset) unless $pages < 2;
813
                                previous_page_offset => $previous_page_offset) unless $pages < 2;
812
- 

Return to bug 33819