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

(-)a/C4/Search.pm (-2 / +1 lines)
Lines 1576-1582 sub _build_initial_query { Link Here
1576
1576
1577
    $params->{query_cgi} .= "&op=".uri_escape_utf8($operator) if $operator;
1577
    $params->{query_cgi} .= "&op=".uri_escape_utf8($operator) if $operator;
1578
    $params->{query_cgi} .= "&idx=".uri_escape_utf8($params->{index}) if $params->{index};
1578
    $params->{query_cgi} .= "&idx=".uri_escape_utf8($params->{index}) if $params->{index};
1579
    $params->{query_cgi} .= "&q=".uri_escape_utf8($params->{original_operand}) if $params->{original_operand};
1579
    $params->{query_cgi} .= "&q=".uri_escape_utf8($params->{original_operand}) if ( $params->{original_operand} ne '' );
1580
1580
1581
    #e.g. " and kw,wrdl: test"
1581
    #e.g. " and kw,wrdl: test"
1582
    $params->{query_desc} .= $operator . ( $params->{index_plus} // q{} ) . " " . ( $params->{original_operand} // q{} );
1582
    $params->{query_desc} .= $operator . ( $params->{index_plus} // q{} ) . " " . ( $params->{original_operand} // q{} );
1583
- 

Return to bug 28365