Fix bug in CSSJanus where background-position and background-position-x weren't flipp...
[lhc/web/wiklou.git] / maintenance / removeUnusedAccounts.php
index 5be1b59..ba25efd 100644 (file)
@@ -92,7 +92,7 @@ class RemoveUnusedAccounts extends Maintenance {
        private function isInactiveAccount( $id, $master = false ) {
                $dbo = wfGetDB( $master ? DB_MASTER : DB_SLAVE );
                $checks = array( 'revision' => 'rev', 'archive' => 'ar', 'logging' => 'log',
-                                                'image' => 'img', 'oldimage' => 'oi' );
+                                                'image' => 'img', 'oldimage' => 'oi', 'filearchive' => 'fa' );
                $count = 0;
 
                $dbo->begin();
@@ -107,4 +107,4 @@ class RemoveUnusedAccounts extends Maintenance {
 }
 
 $maintClass = "RemoveUnusedAccounts";
-require_once( DO_MAINTENANCE );
+require_once( RUN_MAINTENANCE_IF_MAIN );