mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-08 20:46:05 +00:00
skip user if disabled
This commit is contained in:
parent
9e87300567
commit
c03566336a
|
@ -161,6 +161,8 @@ if(!$users) {
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach($users as $user) {
|
foreach($users as $user) {
|
||||||
|
if($user->isDisabled())
|
||||||
|
continue;
|
||||||
if(!$quite)
|
if(!$quite)
|
||||||
echo "Checking for tasks of user ".$user->getFullName()." which are due for more than ".$days." days\n\n";
|
echo "Checking for tasks of user ".$user->getFullName()." which are due for more than ".$days." days\n\n";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user