Lines 383-389
my @indexes;
Link Here
|
383 |
@indexes = split("\0",$params->{'idx'}); |
383 |
@indexes = split("\0",$params->{'idx'}); |
384 |
|
384 |
|
385 |
# if a simple index (only one) display the index used in the top search box |
385 |
# if a simple index (only one) display the index used in the top search box |
386 |
if ($indexes[0] && !$indexes[1]) { |
386 |
if ($indexes[0] && (!$indexes[1] || $params->{'scan'})) { |
387 |
$template->param("ms_".$indexes[0] => 1);} |
387 |
$template->param("ms_".$indexes[0] => 1);} |
388 |
|
388 |
|
389 |
|
389 |
|
390 |
- |
|
|