in reply to Re: Defining a hash key for later use
in thread Defining a hash key for later use
before $toolbar->{'standard'} gets defined but it doesn't appear to work. I was expecting it to work as well.$page->{...}{'toolbar'}{'standard'} = $toolbar->{'standard'};
I may have misstated a detail on the problem. The structure lays out a little more like this:
# $struct->{'toolbar'}{'standard'} does not exist at # this point. $struct->{'toolbar'} may or may not exist $struct->{'page'}{...}{'toolbar'}{'standard'} = $struct->{'toolbar'}{' +standard'};
This is more complete.
|
|---|