Lines 1597-1603
sub _build_initial_query {
Link Here
|
1597 |
|
1597 |
|
1598 |
$params->{query_cgi} .= "&op=".uri_escape_utf8($operator) if $operator; |
1598 |
$params->{query_cgi} .= "&op=".uri_escape_utf8($operator) if $operator; |
1599 |
$params->{query_cgi} .= "&idx=".uri_escape_utf8($params->{index}) if $params->{index}; |
1599 |
$params->{query_cgi} .= "&idx=".uri_escape_utf8($params->{index}) if $params->{index}; |
1600 |
$params->{query_cgi} .= "&q=".uri_escape_utf8($params->{original_operand}) if $params->{original_operand}; |
1600 |
$params->{query_cgi} .= "&q=".uri_escape_utf8($params->{original_operand}) if ( $params->{original_operand} ne '' ); |
1601 |
|
1601 |
|
1602 |
#e.g. " and kw,wrdl: test" |
1602 |
#e.g. " and kw,wrdl: test" |
1603 |
$params->{query_desc} .= $operator . ( $params->{index_plus} // q{} ) . " " . ( $params->{original_operand} // q{} ); |
1603 |
$params->{query_desc} .= $operator . ( $params->{index_plus} // q{} ) . " " . ( $params->{original_operand} // q{} ); |
1604 |
- |
|
|