Friday 13 January 2006 1:32:16 am
Can't assign user from custom user class to workflow?!?
This is because "user" class id is hard coded in approve workflow event. Check in file ezapprovetype.php line 351: There is
'class_array' => array ( 'user' ) )
add your custom class id
'class_array' => array ( 'user', 'custom_class_id' ) )
Could you post bug report? This should be configurable in INI file.
Personal website -> http://serwatka.net
Blog (about eZ Publish) -> http://serwatka.net/blog
|