Re: Problem with %udat and references

2012-04-13 Thread Jean-Christophe Boggio
Le 13/04/2012 10:54, kolikov a écrit : $udat{verdict} being a scalar, assigning an array to it makes it a refference. I assign it a reference to an array Embperl is perhaps assigning \@tmp as a reference of reference. Nope : I'm checking the array's content with Data::Dumper But if you sa

Re: Problem with %udat and references

2012-04-13 Thread kolikov
Le 12/04/2012 16:02, Jean-Christophe Boggio a écrit : When I reach somewhere.html, $udat{verdict} is populated only when the second line is active (the one explicitly defining the arrayref as ["1","bla","x"]). When I try with a reference to @tmp it is just a reference to an empty array. What