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 347-354 if ( $template_type && $template_type eq 'advsearch' ) { Link Here
347
#  * multivalued CGI paramaters are returned as a packaged string separated by "\0" (null)
347
#  * multivalued CGI paramaters are returned as a packaged string separated by "\0" (null)
348
my $params = $cgi->Vars;
348
my $params = $cgi->Vars;
349
my $tag;
349
my $tag;
350
$tag = $params->{tag} if $params->{tag};
350
if ( $params->{tag} ) {
351
351
    $tag = $params->{tag};
352
    $template->param( tag => $tag );
353
}
352
354
353
# String with params with the search criteria for the paging in opac-detail
355
# String with params with the search criteria for the paging in opac-detail
354
# param value is URI encoded and params separator is HTML encode (&amp;)
356
# param value is URI encoded and params separator is HTML encode (&amp;)
355
- 

Return to bug 6950