in reply to Re: XML::SAX parameters
in thread XML::SAX parameters
While it all was in one file with handler package - all worked.
After I checked it and splitted it in different modules at different places of the project and mentioned handler as needed. Parsing was working, but method for the only returning results didn't work.
Well the solution was to put line return \@results; right to the
method :)sub end_document{ $self = shift; return \@results;}
|
|---|