Replaced boolval calls to cast to bool so that the app works with PHP 5.2.
[timetracker.git] / users.php
index a841818..cd60b89 100644 (file)
--- a/users.php
+++ b/users.php
@@ -47,7 +47,7 @@ if($user->canManageTeam()) {
 // Check each active user if they have an uncompleted time entry.
 foreach ($active_users as $key => $user) {
   // Turn value from database into boolean.
-  $has_uncompleted_entry = boolval(ttTimeHelper::getUncompleted($user['id']));
+  $has_uncompleted_entry = (bool) ttTimeHelper::getUncompleted($user['id']);
   // Add to current user in $active_users array.
   $active_users[$key]['has_uncompleted_entry'] = $has_uncompleted_entry;
 }