]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/ExpireAndRemoveUsers.php
version 2021.03-dev
[friendica.git] / src / Worker / ExpireAndRemoveUsers.php
index c8344b6fd956cba4b5d3f11b8d7f71333112ce95..f28f410b965e24af141810281ec9f879f622fe99 100644 (file)
@@ -33,9 +33,14 @@ class ExpireAndRemoveUsers
        public static function execute()
        {
                // expire any expired regular accounts. Don't expire forums.
-               $condition = ["NOT `account_expired` AND `account_expires_on` > ? AND `account_expires_on` < UTC_TIMESTAMP() AND `page-flags` = 0", DBA::NULL_DATETIME];
+               $condition = ["NOT `account_expired` AND `account_expires_on` > ? AND `account_expires_on` < UTC_TIMESTAMP() AND `page-flags` = ? AND `uid` != ?",
+                       DBA::NULL_DATETIME, User::PAGE_FLAGS_NORMAL, 0];
                DBA::update('user', ['account_expired' => true], $condition);
 
+               // Ensure to never remove the user with uid=0
+               DBA::update('user', ['account_expired' => false, 'account_removed' => false,
+                       'account_expires_on' => DBA::NULL_DATETIME], ['uid' => 0]);
+
                // Remove any freshly expired account
                $users = DBA::select('user', ['uid'], ['account_expired' => true, 'account_removed' => false]);
                while ($user = DBA::fetch($users)) {