X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;ds=inline;f=maintenance%2FpurgeOldText.php;h=1b78c7d9d7a460644c9ca61d7459bc8e6d2dbdf0;hb=1ed097a16517656998d3e4d00d4e60d710a88f25;hp=1f0b063b6ba22b4b2f2fcf2e075cb437a1e904d2;hpb=b0cb8e159236e8e57edcc36f0f1dfb303a5acf11;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/purgeOldText.php b/maintenance/purgeOldText.php index 1f0b063b6b..1b78c7d9d7 100644 --- a/maintenance/purgeOldText.php +++ b/maintenance/purgeOldText.php @@ -22,7 +22,7 @@ * @author Rob Church */ -require_once( __DIR__ . '/Maintenance.php' ); +require_once __DIR__ . '/Maintenance.php'; /** * Maintenance script that purges old text records from the database. @@ -32,7 +32,7 @@ require_once( __DIR__ . '/Maintenance.php' ); class PurgeOldText extends Maintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Purge old text records from the database"; + $this->addDescription( 'Purge old text records from the database' ); $this->addOption( 'purge', 'Performs the deletion' ); } @@ -42,4 +42,4 @@ class PurgeOldText extends Maintenance { } $maintClass = "PurgeOldText"; -require_once( RUN_MAINTENANCE_IF_MAIN ); +require_once RUN_MAINTENANCE_IF_MAIN;