in reply to can't modify anonymous hash ({}) in scalar assignment
"$self=>{ettx} = {};"
Apart from I cannot see that particular line in the code you've posted; if it is there, it should probably be:
$self->{ettx} = {}; .....^
Update: Ah! You probably mean: $self=>{ettx} = $xml->XMLin(shift); which should be:
$self->{ettx} = $xml->XMLin(shift); ......^
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: can't modify anonymous hash ({}) in scalar assignment
by Anonymous Monk on Jul 26, 2010 at 15:30 UTC | |
by Anonymous Monk on Jul 26, 2010 at 16:06 UTC |