[Pdx-pm] hash of hashes in TT2

Randall Hansen randall at sonofhans.net
Fri Jan 5 11:55:44 PST 2007


On Jan 5, 2007, at 11:42 AM, Thomas J Keller wrote:

>                <li> [% key %] mode, [% fees.dseq.key.title %]: [%  
> fees.dseq.key.fee %] </li>

TT is trying to evaluate "key" as a literal key name:  $dseq-> 
{ key }.  you want it to use the value of the variable "key," or  
$dseq->{ $key }:

                <li> [% key %] mode, [% fees.dseq.$key.title %]: [%  
fees.dseq.$key.fee %] </li>

r



More information about the Pdx-pm-list mailing list