more prepareView fixes

This commit is contained in:
Matthew Wilson 2006-05-18 15:09:49 +00:00
parent ad84dc5556
commit 0b604dc78b

View file

@ -237,6 +237,7 @@ sub view {
$newStuff .= 'available_dashlets["'.$child->getId.'"]=\''.$child->getUrl.'\';'; $newStuff .= 'available_dashlets["'.$child->getId.'"]=\''.$child->getUrl.'\';';
} else { } else {
$child->prepareView;
push(@{$vars{"position".$i."_loop"}},{ push(@{$vars{"position".$i."_loop"}},{
id=>$child->getId, id=>$child->getId,
content=>$child->view, content=>$child->view,
@ -322,6 +323,7 @@ sub www_view {
} }
} }
$self->logView(); $self->logView();
$self->prepareView;
my $style = $self->processStyle($self->view); my $style = $self->processStyle($self->view);
} }