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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-4 / +6 lines)
Lines 131-140 Link Here
131
                                            <a href="#" class="highlight_toggle" id="highlight_toggle_on">Highlight</a>
131
                                            <a href="#" class="highlight_toggle" id="highlight_toggle_on">Highlight</a>
132
                                        </div>
132
                                        </div>
133
                                    [% END %]
133
                                    [% END %]
134
                                    <div class="sort_by pull-right">
134
                                    [% UNLESS tag %]
135
                                        <select id="sort_by" class="resort" name="sort_by"> [% INCLUDE 'resort_form.inc' %] </select>
135
                                        <div class="sort_by pull-right">
136
                                        <input type="submit" class="btn btn-small clearfix" id="sortsubmit" value="Go" />
136
                                            <select id="sort_by" class="resort" name="sort_by"> [% INCLUDE 'resort_form.inc' %] </select>
137
                                    </div>
137
                                            <input type="submit" class="btn btn-small clearfix" id="sortsubmit" value="Go" />
138
                                        </div>
139
                                    [% END %]
138
                                </div> <!-- / #toolbar -->
140
                                </div> <!-- / #toolbar -->
139
141
140
                                <div id="selections-toolbar" class="toolbar noprint">
142
                                <div id="selections-toolbar" class="toolbar noprint">
(-)a/opac/opac-search.pl (-3 / +4 lines)
Lines 345-352 if ( $template_type && $template_type eq 'advsearch' ) { Link Here
345
#  * multivalued CGI paramaters are returned as a packaged string separated by "\0" (null)
345
#  * multivalued CGI paramaters are returned as a packaged string separated by "\0" (null)
346
my $params = $cgi->Vars;
346
my $params = $cgi->Vars;
347
my $tag;
347
my $tag;
348
$tag = $params->{tag} if $params->{tag};
348
if ( $params->{tag} ) {
349
349
    $tag = $params->{tag};
350
    $template->param( tag => $tag );
351
}
350
352
351
# String with params with the search criteria for the paging in opac-detail
353
# String with params with the search criteria for the paging in opac-detail
352
# param value is URI encoded and params separator is HTML encode (&amp;)
354
# param value is URI encoded and params separator is HTML encode (&amp;)
353
- 

Return to bug 6950