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

(-)a/C4/Search.pm (-1 / +1 lines)
Lines 1188-1194 sub parseQuery { Link Here
1188
            $query .= $operators[ $ii - 1 ] eq 'or' ? ' || ' : ' && '
1188
            $query .= $operators[ $ii - 1 ] eq 'or' ? ' || ' : ' && '
1189
              if ($query);
1189
              if ($query);
1190
            $query .=
1190
            $query .=
1191
              ( $operators[$ii] ? "$operators[$ii]:" : '' ) . $operands[$ii];
1191
              ( $indexes[$ii] ? "$indexes[$ii]:" : '' ) . $operands[$ii];
1192
        }
1192
        }
1193
        foreach my $limit (@limits) {
1193
        foreach my $limit (@limits) {
1194
        }
1194
        }
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-results-grouped.tt (-1 / +1 lines)
Lines 17-23 var q_array = new Array(); // will hold the search terms, if possible Link Here
17
$(document).ready(function(){
17
$(document).ready(function(){
18
    [% IF ( OpacHighlightedWords ) %]
18
    [% IF ( OpacHighlightedWords ) %]
19
        $('a.title').each(function() {
19
        $('a.title').each(function() {
20
            $(this).attr('href', $(this).attr('href') + '&query_desc=[% query_desc | url %]');
20
            $(this).attr('href', $(this).attr('href') + '&query_desc=[% query_desc | uri %]');
21
        });
21
        });
22
    [% END %]
22
    [% END %]
23
23
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-results.tt (-2 / +1 lines)
Lines 105-111 function highlightOn() { Link Here
105
$(document).ready(function(){
105
$(document).ready(function(){
106
    [% IF ( OpacHighlightedWords ) %]
106
    [% IF ( OpacHighlightedWords ) %]
107
        $('a.title').each(function() {
107
        $('a.title').each(function() {
108
            $(this).attr('href', $(this).attr('href') + '&query_desc=[% query_desc | url %]');
108
            $(this).attr('href', $(this).attr('href') + '&query_desc=[% query_desc | uri %]');
109
        });
109
        });
110
    [% END %]
110
    [% END %]
111
111
112
- 

Return to bug 9239