Gossamer Forum
Home : Products : Gossamer Links : Discussions :

bug: search highlighting

Quote Reply
bug: search highlighting
Hi,

Search highlighting seems not to work when using * for example: examp* .
I have not yet checked for other instances, but I would suggest something like:

Code:
chop $lc if $lc =~ /\*$/;

in /admin/Links/Tools.pm

after

Code:
my $lc = lc;

in sub highlight.

Regards

Niko
Quote Reply
Re: [el noe] bug: search highlighting In reply to
maybe this one is better:
Code:
$lc =~ s/\*+$//g;

Regards

Niko