From e05490487c7aa9ea466f9bd8d652b49ed20a40f7 Mon Sep 17 00:00:00 2001 From: Matthew Wilson Date: Thu, 18 May 2006 13:41:37 +0000 Subject: [PATCH] inlineView must prepareView before view() --- lib/WebGUI/Asset.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/WebGUI/Asset.pm b/lib/WebGUI/Asset.pm index 3078e560c..0cb9eab73 100644 --- a/lib/WebGUI/Asset.pm +++ b/lib/WebGUI/Asset.pm @@ -1811,6 +1811,7 @@ Returns the view() method of the asset object if the requestor canView. sub www_ajaxInlineView { my $self = shift; return $self->session->privilege->noAccess() unless $self->canView; + $self->prepareView; return $self->view; }