Re: Using XML::Simple [SORRY - correction]

2006-01-19 Thread John Meyer
[EMAIL PROTECTED] wrote: > > Please remove me from this list! Thank you! > > RRCA > > Kindly remove yourself from this list and refrain from showing the rest of us how much of an idiot you are. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Using XML::Simple [SORRY - correction]

2006-01-19 Thread RangerRickCA
Please remove me from this list! Thank you! RRCA

Re: Using XML::Simple [SORRY - correction]

2006-01-19 Thread John Doe
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