Author Topic: Assigned to: dropdown only shows users with task write permissions  (Read 2791 times)

andy.hoyle

  • Newbie
  • *
  • Posts: 30
    • View Profile
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?

ignacio

  • Hero Member
  • *****
  • Posts: 1703
    • View Profile
Re: Assigned to: dropdown only shows users with task write permissions
« Reply #1 on: 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:
Code: [Select]
if ($proj_perm && can_manage_type($object_manager,$proj_perm, ACCESS_LEVEL_WRITE)){to:
Code: [Select]
if ($proj_perm && can_manage_type($object_manager,$proj_perm, ACCESS_LEVEL_READ)){
It will be fixed for next version.

Thanks.

andy.hoyle

  • Newbie
  • *
  • Posts: 30
    • View Profile
Re: Assigned to: dropdown only shows users with task write permissions
« Reply #2 on: August 25, 2009, 11:18:57 am »
Great thanks!