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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-1 / +1 lines)
Lines 48-54 Link Here
48
                    [% END %]
48
                    [% END %]
49
                    <li class="breadcrumb-item active">
49
                    <li class="breadcrumb-item active">
50
                        [% IF ( ms_value ) %]
50
                        [% IF ( ms_value ) %]
51
                            <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>
51
                            <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 %]', page [% current_page_number | html%] of [% pages | html%]</a>
52
                        [% ELSE %]
52
                        [% ELSE %]
53
                            <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
                            <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>
54
                        [% END %]
54
                        [% END %]
(-)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