Sorry for posting this here but could not find any buglist only helpdesk..
First one and most important prevents actions to work correctly
In include/actions.inc.php
Group checking is done :
get_accessible_groups_by_user($USER_DETAILS,PERM_R EAD_ONLY);
instead of
get_accessible_groups_by_user($USER_DETAILS,PERM_R EAD_ONLY,PERM_RES_IDS_ARRAY);
I might be wrong about this but first one is definitely wrong, and produces an error in interface. (fix should be for both action_accessible, and check_permission_for_action_conditions functions)
Second :
$usr_grp_gui_in[] is wrongly set to $groups instead of $group in include/users.inc.php on line 479
First one and most important prevents actions to work correctly
In include/actions.inc.php
Group checking is done :
get_accessible_groups_by_user($USER_DETAILS,PERM_R EAD_ONLY);
instead of
get_accessible_groups_by_user($USER_DETAILS,PERM_R EAD_ONLY,PERM_RES_IDS_ARRAY);
I might be wrong about this but first one is definitely wrong, and produces an error in interface. (fix should be for both action_accessible, and check_permission_for_action_conditions functions)
Second :
$usr_grp_gui_in[] is wrongly set to $groups instead of $group in include/users.inc.php on line 479
Comment