John Doe am Donnerstag, 19. Januar 2006 12.43:
> $VAR1->{LayerList}->{LayerDetails}=
> [ map {%$_} @{$VAR1->{LayerList}->{LayerDetails}} ];
This should be:
$VAR1->{LayerList}->{LayerDetails}=
[ map {values %$_} @{$VAR1->{LayerList}->{LayerDetails}} ];
(The 'values' omits the repeated 'Name' in the result)
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
