Lines 1815-1821
sub _build_initial_query {
Link Here
|
1815 |
$params->{query_cgi} .= "&q=".uri_escape_utf8($params->{original_operand}) if $params->{original_operand}; |
1815 |
$params->{query_cgi} .= "&q=".uri_escape_utf8($params->{original_operand}) if $params->{original_operand}; |
1816 |
|
1816 |
|
1817 |
#e.g. " and kw,wrdl: test" |
1817 |
#e.g. " and kw,wrdl: test" |
1818 |
$params->{query_desc} .= $operator . $params->{index_plus} . " " . $params->{original_operand}; |
1818 |
$params->{query_desc} .= ( $operator . ( $params->{index_plus} // q{} ) . " " . ( $params->{original_operand} // q{} ); |
1819 |
|
1819 |
|
1820 |
$params->{previous_operand} = 1 unless $params->{previous_operand}; #If there is no previous operand, mark this as one |
1820 |
$params->{previous_operand} = 1 unless $params->{previous_operand}; #If there is no previous operand, mark this as one |
1821 |
|
1821 |
|
1822 |
- |
|
|