in reply to is a WWW::Mechanize bug or my ignorance?

It is HTML::Form bug, report it here. Here's a workaround :)
sub HTML::Form::ImageInput::form_name_value { my $self = shift; my $clicked = $self->{clicked}; return unless $clicked; return if $self->{disabled}; my $name = $self->{name}; $name = (defined($name) && length($name)) ? "$name." : ""; return ("${name}x" => $clicked->[0], "${name}y" => $clicked->[1], "$$self{name}" => $self->value, ); }

Replies are listed 'Best First'.
Re^2: is a WWW::Mechanize bug or my ignorance?
by way (Sexton) on Mar 19, 2009 at 22:05 UTC

    Thank you by the workaround i report it now, Cheers!