Avoid fatal errors with uselang=s
[lhc/web/wiklou.git] / maintenance / purgeDeletedFiles.php
index b2655f7..cd62716 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Scans the deletion log and purges affected files within a timeframe.
+ * Scan the deletion log and purges affected files within a timeframe.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
  *
+ * @file
  * @ingroup Maintenance
  */
 
-require_once( dirname( __FILE__ ) . '/Maintenance.php' );
+require_once( __DIR__ . '/Maintenance.php' );
 
+/**
+ * Maintenance script that scans the deletion log and purges affected files
+ * within a timeframe.
+ *
+ * @ingroup Maintenance
+ */
 class PurgeDeletedFiles extends Maintenance {
        public function __construct() {
                parent::__construct();
@@ -63,7 +70,8 @@ class PurgeDeletedFiles extends Maintenance {
                        $file = $repo->newFile( Title::makeTitle( NS_FILE, $row->log_title ) );
 
                        // Purge current version and any versions in oldimage table
-                       $file->purgeEverything();
+                       $file->purgeCache();
+                       $file->purgeHistory();
                        // Purge items from fileachive table (rows are likely here)
                        $this->purgeFromArchiveTable( $file );
 
@@ -73,7 +81,7 @@ class PurgeDeletedFiles extends Maintenance {
 
        protected function purgeFromArchiveTable( LocalFile $file ) {
                $db = $file->getRepo()->getSlaveDB();
-               $res = $db->select( 'filearchive', 
+               $res = $db->select( 'filearchive',
                        array( 'fa_archive_name' ),
                        array( 'fa_name' => $file->getName() ),
                        __METHOD__