On Fri, Apr 29, 2005 at 11:38:07PM +0800, Jonathan Gill wrote: > First, Appologies, my mail server decided to move, so can retrieve > emails at the moment, doign this via the archive. > > What I notice is (under 0.26 POE) I get a different error, > "Can't coerce array into hash"
$_[HEAP] shouldn't be an array reference unless you've done something sneaky. Maybe you're saying: my ($heap, @stuff) = @_; It should be: my ($heap, @stuff) = @_[HEAP, ARG0, ARG1, etc.]; Or you've otherwise mismatched the variables with their elements in @_ ? -- Rocco Caputo - http://poe.perl.org/
