]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/DBClean.php
Rename Model\GlobalContact to Model\GContact
[friendica.git] / src / Worker / DBClean.php
index 40883d5138420aa50d512bb66fdab2b2e111c4a2..45a080400ed095325d6deec4ee71014933375f22 100644 (file)
@@ -17,9 +17,6 @@ class DBClean {
                        return;
                }
 
-               // Get the expire days for step 8 and 9
-               $days = Config::get('system', 'dbclean-expire-days', 0);
-
                if ($stage == 0) {
                        self::forkCleanProcess();
                } else {
@@ -31,6 +28,9 @@ class DBClean {
         * @brief Fork the different DBClean processes
         */
        private static function forkCleanProcess() {
+               // Get the expire days for step 8 and 9
+               $days = Config::get('system', 'dbclean-expire-days', 0);
+
                for ($i = 1; $i <= 10; $i++) {
                        // Execute the background script for a step when it isn't finished.
                        // Execute step 8 and 9 only when $days is defined.