Tuesday 24 February 2004 2:25:59 pm
Hi Alessandro There was a bug related to the editors list that was fixed in v3.3-2, which might be what is causing your problem. The bug is in kernal/classes/worflowtypes/event/ezapprove/ezapprovetype.php. Look for the code starting at line 111 and add a new line to it...
$user =& $users[$key];
$user['Name'] = $user['name'];
$user['Value'] = $user['id'];
ADD THIS LINE HERE $userList[] = $user;
}
returns $userList; }break; You will now get the list of editors you need. Hope that's what you needed. Cheers Iain
|