fix infinite loop in nav

This commit is contained in:
Graham Knop 2008-09-16 21:56:44 +00:00
parent 65742963aa
commit 5e34d1bca9

View file

@ -427,7 +427,8 @@ sub view {
next;
}
my $pageData = {};
while (my ($property, $propertyValue) = each %{ $asset->get() }) {
my $pageProperties = $asset->get;
while (my ($property, $propertyValue) = each %{ $pageProperties }) {
$pageData->{"page.".$property} = $propertyValue;
}
$pageData->{'page.menuTitle'} = $asset->getMenuTitle;