* Added rev_sha1 and ar_sha1 columns to revision/archive tables (useful for bug 25312)
[lhc/web/wiklou.git] / maintenance / purgeOldText.php
index ee6f56e..0cbc724 100644 (file)
@@ -29,11 +29,11 @@ class PurgeOldText extends Maintenance {
                $this->mDescription = "Purge old text records from the database";
                $this->addOption( 'purge', 'Performs the deletion' );
        }
-       
+
        public function execute() {
                $this->purgeRedundantText( $this->hasOption( 'purge' ) );
        }
 }
 
 $maintClass = "PurgeOldText";
-require_once( DO_MAINTENANCE );
+require_once( RUN_MAINTENANCE_IF_MAIN );