X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=users.php;h=8602186382e6aff6f67a09c8c6a39e2cf66b1b0a;hb=62b36719d92eec21e5e132811c1ec88e5f495117;hp=79f2df3e6c52bfe5c4a58f122223ad0cc2201420;hpb=b401022733a9645ed701522585b2d57db936f5cc;p=timetracker.git diff --git a/users.php b/users.php index 79f2df3e..86021863 100644 --- a/users.php +++ b/users.php @@ -41,12 +41,6 @@ if (!ttAccessAllowed('view_users')) { // 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); } @@ -62,6 +56,6 @@ if ($user->uncompleted_indicators) { $smarty->assign('active_users', $active_users); $smarty->assign('inactive_users', $inactive_users); $smarty->assign('can_delete_manager', $can_delete_manager); -$smarty->assign('title', $i18n->getKey('title.users')); +$smarty->assign('title', $i18n->get('title.users')); $smarty->assign('content_page_name', 'users.tpl'); $smarty->display('index.tpl');