Subject: | Assignment of shift to list |
At Soap/Lite.pm, part of SOAP::Data, line 578 of 0.712, this assignment
appears:
578 my ($name, $uri, $prefix) = shift;
This is Deep Magic, since $uri and $prefix are being declared but not
assigned to, and this looks like a bug.
Please change to two lines: one accepting the assignment to $name, and
the other declaring $uri and $prefix.