|
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 |
- |
|
|