X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=users.php;h=28a37227a523e445e88e3d09819fab87b9422421;hb=dc00748e76b054fb1163f7a3835b686a752fbf8a;hp=3fc266775d68ff0d7a487635ec221c26dc4a1620;hpb=fe40891a4ad16b5b70d518e8b5b2596267b684f9;p=timetracker.git diff --git a/users.php b/users.php index 3fc26677..28a37227 100644 --- a/users.php +++ b/users.php @@ -33,7 +33,7 @@ import('ttTimeHelper'); import('ttRoleHelper'); // Access check. -if (!ttAccessCheck(right_data_entry)) { +if (!ttAccessAllowed('view_users')) { header('Location: access_denied.php'); exit(); } @@ -41,12 +41,6 @@ if (!ttAccessCheck(right_data_entry)) { // Get users. $active_users = ttTeamHelper::getActiveUsers(array('getAllFields'=>true)); if($user->canManageTeam()) { - - // If there are no roles in team, introduce default ones. - if (!ttRoleHelper::rolesExist()) ttRoleHelper::createDefaultRoles(); // TODO: refactor or remove after roles revamp. - // This is here temporarily so that we have roles to work with to manage users. - // Normally, this should be done during an upgrade step (not yet implemented). - $can_delete_manager = (1 == count($active_users)); $inactive_users = ttTeamHelper::getInactiveUsers($user->team_id, true); }