Lines 457-463
my @indexes = $cgi->multi_param('idx');
Link Here
|
457 |
|
457 |
|
458 |
# if a simple index (only one) display the index used in the top search box |
458 |
# if a simple index (only one) display the index used in the top search box |
459 |
if ($indexes[0] && !$indexes[1]) { |
459 |
if ($indexes[0] && !$indexes[1]) { |
460 |
$template->param("ms_".$indexes[0] => 1); |
460 |
my $idx = "ms_".$indexes[0]; |
|
|
461 |
$idx =~ s/\,/comma/g; # template toolkit doesn't like variables with a , in it |
462 |
$idx =~ s/-/dash/g; # template toolkit doesn't like variables with a dash in it |
463 |
$template->param($idx => 1); |
461 |
} |
464 |
} |
462 |
# an operand can be a single term, a phrase, or a complete ccl query |
465 |
# an operand can be a single term, a phrase, or a complete ccl query |
463 |
my @operands = $cgi->multi_param('q'); |
466 |
my @operands = $cgi->multi_param('q'); |
464 |
- |
|
|