skip user if disabled

This commit is contained in:
Uwe Steinmann 2017-07-20 17:00:41 +02:00
parent 9e87300567
commit c03566336a

View File

@ -161,6 +161,8 @@ if(!$users) {
}
foreach($users as $user) {
if($user->isDisabled())
continue;
if(!$quite)
echo "Checking for tasks of user ".$user->getFullName()." which are due for more than ".$days." days\n\n";