First of all let me say that is the first time I help with a Debian bug, so if
I'm doing something wrong I'd be grateful for any correction.
Anyhow, I took a look at /usr/share/perl5/Bugzilla/Search.pm.
The error is generated by these two lines:
my $chfieldfrom = trim(lc($params->param('chfieldfrom'))) || '';
my $chfieldto = trim(lc($params->param('chfieldto'))) || '';
Apparently can be that params does not return the the fields (may be non
existent), thus generating the lc message.
One way I found to correct this is the following:
my $chfieldfrom = trim($params->param('chfieldfrom')) || '';
my $chfieldto = trim($params->param('chfieldto')) || '';
$chfieldfrom = lc($chfieldfrom);
$chfieldto= lc($chfieldto);
--
Paolo Marco Ripamonti
email: [email protected]
mobile: +39 340 1242 320
http://www,acheronte.org
"To err is human, to moo bovine"