Subject: | $self->{'cache'} initialization |
In WWW::Search source:
Show quoted text
> sub reset_search
> {
> ...
> $self->{'cache'} = ();
...
Show quoted text> sub setup_search
> {
> ...
> $self->{cache} = ();
Based on the code in results() and elsewhere, I believe in both cases it should be:
$self->{cache} = [];
Though the change is probably inconsequential.
-Tom