Lines 293-299
if ($add_op) {
Link Here
|
293 |
} |
293 |
} |
294 |
} |
294 |
} |
295 |
(scalar @errors ) and $template->param(ERRORS => \@errors); |
295 |
(scalar @errors ) and $template->param(ERRORS => \@errors); |
296 |
my @orderedresult = sort { $a->{'term'} cmp $b->{'term'} } @$results; |
296 |
my @orderedresult = sort { uc($a->{'term'}) cmp uc($b->{'term'}) } @$results; |
297 |
(scalar @$results) and $template->param(TAGLOOP => \@orderedresult ); |
297 |
(scalar @$results) and $template->param(TAGLOOP => \@orderedresult ); |
298 |
(scalar @$my_tags) and $template->param(MY_TAGS => $my_tags); |
298 |
(scalar @$my_tags) and $template->param(MY_TAGS => $my_tags); |
299 |
|
299 |
|
300 |
- |
|
|