Lines 414-420
if ($indexes[0] && (!$indexes[1] || $params->{'scan'})) {
Link Here
|
414 |
} |
414 |
} |
415 |
|
415 |
|
416 |
# an operand can be a single term, a phrase, or a complete ccl query |
416 |
# an operand can be a single term, a phrase, or a complete ccl query |
417 |
my @operands = map Encode::decode_utf8( uri_unescape($_) ), $cgi->param('q'); |
417 |
my @operands = map uri_unescape($_), $cgi->param('q'); |
418 |
|
418 |
|
419 |
# limits are use to limit to results to a pre-defined category such as branch or language |
419 |
# limits are use to limit to results to a pre-defined category such as branch or language |
420 |
my @limits = map uri_unescape($_), $cgi->param('limit'); |
420 |
my @limits = map uri_unescape($_), $cgi->param('limit'); |
421 |
- |
|
|