X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/9b11ada8adfdfe888c50f799e6523c8df95d090f..f9e5e8956921839e6742a85db2067ddc6ef5b2b8:/users.php diff --git a/users.php b/users.php index d20617bc..d19ba7de 100644 --- a/users.php +++ b/users.php @@ -28,7 +28,6 @@ require_once('initialize.php'); import('form.Form'); -import('ttTeamHelper'); import('ttTimeHelper'); import('ttRoleHelper'); @@ -52,12 +51,13 @@ if($user->can('manage_users')) { $inactive_users = $user->getUsers($options); } -// Check if the group is set to show indicators for uncompleted time entries. -if ($user->uncompleted_indicators) { +$uncompleted_indicators = $user->getConfigOption('uncompleted_indicators'); +if ($uncompleted_indicators) { // Check each active user if they have an uncompleted time entry. foreach ($active_users as $key => $user) { $active_users[$key]['has_uncompleted_entry'] = (bool) ttTimeHelper::getUncompleted($user['id']); } + $smarty->assign('uncompleted_indicators', true); } $smarty->assign('active_users', $active_users);