From e7469531cf65e6dd73ef2187807d72fdc74d40db Mon Sep 17 00:00:00 2001 From: Frank Dillon Date: Tue, 18 Nov 2008 03:52:39 +0000 Subject: [PATCH] Fixed WebGUI::Macro::process call which was being called incorrectly but working for some reason. --- lib/WebGUI/Account.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Account.pm b/lib/WebGUI/Account.pm index 14ff0fa11..96d33849d 100644 --- a/lib/WebGUI/Account.pm +++ b/lib/WebGUI/Account.pm @@ -258,7 +258,7 @@ sub displayContent { $hash{'is_method_'.$self->method } = "true"; $hash{'url' } = $instance->getUrl("module=$identifier",1); $hash{'isActive' } = "true" if($identifier eq $self->module); - WebGUI::Macro::process(\$hash{'title'}); + WebGUI::Macro::process($session,\$hash{'title'}); push(@pluggins,\%hash); } $var->{'account_loop'} = \@pluggins;