Fixed a bug where namespace wasn't being passed to the template getter.

This commit is contained in:
JT Smith 2002-10-17 03:26:02 +00:00
parent 2b09ea9f64
commit fa570cd7bb

View file

@ -521,7 +521,7 @@ sub processTemplate {
%{$_[0]->{_property}},
%{$_[2]}
);
return WebGUI::Template::process(WebGUI::Template::get($_[1]), \%vars);
return WebGUI::Template::process(WebGUI::Template::get($_[1],$_[0]->get("namespace")), \%vars);
}
#-------------------------------------------------------------------