Feng Forum

Support => Older versions => : andy.hoyle August 21, 2009, 07:23:01 AM

: Assigned to: dropdown only shows users with task write permissions
: andy.hoyle August 21, 2009, 07:23:01 AM
Version 1.5.2

Assigned to: dropdown only shows users with task write permissions

I have quite a few users. When I come to create a new task and select "Assigned to:" only the users who have task write permissions for that workspace are shown.

Can anyone point me in the right dorection to correct this please?
: Re: Assigned to: dropdown only shows users with task write permissions
: ignacio August 24, 2009, 03:17:28 PM
It's a bug. Users with permissions to read Tasks should be shown too. You can correct it by editing line 417 of file 'application/helpers/permissions.php', from:
:
if ($proj_perm && can_manage_type($object_manager,$proj_perm, ACCESS_LEVEL_WRITE)){to:
:
if ($proj_perm && can_manage_type($object_manager,$proj_perm, ACCESS_LEVEL_READ)){
It will be fixed for next version.

Thanks.
: Re: Assigned to: dropdown only shows users with task write permissions
: andy.hoyle August 25, 2009, 11:18:57 AM
Great thanks!