Cut and paste is always fun
authorMichael <heluecht@pirati.ca>
Wed, 6 Dec 2017 16:50:52 +0000 (16:50 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 6 Dec 2017 16:50:52 +0000 (16:50 +0000)
src/Worker/DBClean.php

index 40883d5..45a0804 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.