X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FdumpUploads.php;h=b4df20fe01033b87bec3dca1399f4214eb6f0558;hb=01cdb1762c7207bd261ad03726a88cb9afc97bfb;hp=8d63fe55f90784bcc9642adec3555de95d6c3c9a;hpb=57eaa2bf04ce1b48bd89c10defe4de5b7d31f047;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/dumpUploads.php b/maintenance/dumpUploads.php index 8d63fe55f9..b4df20fe01 100644 --- a/maintenance/dumpUploads.php +++ b/maintenance/dumpUploads.php @@ -29,7 +29,7 @@ require_once __DIR__ . '/Maintenance.php'; * * @ingroup Maintenance */ -class UploadDumper extends Maintenance { +class DumpUploads extends Maintenance { public function __construct() { parent::__construct(); $this->addDescription( 'Generates list of uploaded files which can be fed to tar or similar. @@ -124,5 +124,5 @@ By default, outputs relative paths against the parent directory of $wgUploadDire } } -$maintClass = "UploadDumper"; +$maintClass = DumpUploads::class; require_once RUN_MAINTENANCE_IF_MAIN;