Subject: | clicking on image map submit buttons doesn't work. |
line 136 in WWW::Chat::Processor.pm needs a whitespace separator:
IS
(/^(\s*)(?:CLICK|SUBMIT)(?:\s+(\w+))?(?:(\d+)\s+(\d+))?/) {
SHOULD BE
(/^(\s*)(?:CLICK|SUBMIT)(?:\s+(\w+))?\s+(?:(\d+)\s+(\d+))?/) {
clicking on image map submit buttons doesn't work without this.