Subject: | CGI::url_param uninitialized value in hash |
Not sure if it is worth to file a bug report, but I like it to have a
"clean" error_log to quickly detect relevant things:
calling url_param() with a query string like www.example.com?p1=1&&p2=2
cause an error:
Use of uninitialized value in hash element at (eval 109) line 14.
at (eval 109) line 14
I assume, adding:
my($param,$value);
for (@pairs) {
+ next unless defined($_);
($param,$value) = split('=',$_,2);
into the url_param() will fix it.
Cheers
Heiko