]> git.mxchange.org Git - friendica.git/blobdiff - include/dbclean.php
Degrade priority step by step
[friendica.git] / include / dbclean.php
index 8da78d64b59c9056e2afa602e902c8f6fc0d103b..bc41bead2d31841cb474c50c3b5a3093da0b144c 100644 (file)
@@ -24,7 +24,7 @@ function dbclean_run(&$argv, &$argc) {
                for ($i = 1; $i <= 9; $i++) {
                        // Execute the background script for a step when it isn't finished.
                        // Execute step 8 and 9 only when $days is defined.
-                       if (!Config::get('system', 'finished-dbclean-'.$i, false) AND (($i < 8) OR ($days > 0))) {
+                       if (!Config::get('system', 'finished-dbclean-'.$i, false) && (($i < 8) || ($days > 0))) {
                                proc_run(PRIORITY_LOW, 'include/dbclean.php', $i);
                        }
                }
@@ -296,7 +296,7 @@ function remove_orphans($stage = 0) {
        }
 
        // Call it again if not all entries were purged
-       if (($stage != 0) AND ($count > 0)) {
+       if (($stage != 0) && ($count > 0)) {
                proc_run(PRIORITY_MEDIUM, 'include/dbclean.php');
        }
 }