From: Marc P. <ma...@an...> - 2005-07-22 12:56:48
|
-----Original Message----- From: "Nikhil G. Daddikar" <ng...@ce...> To: web...@li... Date: Fri, 22 Jul 2005 17:15:21 +0530 Subject: [WebMacro-user] Bug(?) > In WM 2.0 (release May 14 2005), if I do this: > > #set $tasks = $PMUtils().getTasks() > > then $tasks is set to the object that PMUtils() returns and not to the > list of tasks > > I think this is a bug, can some one confirm this? Nope. You don't use parentheses on properties. Your correct sytnax should be: #set $tasks = $PMUtils.Tasks Isn't that much nicer :) Cheers |