X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FcleanupUploadStash.php;h=d255348374b38efef227ac3c5188c9a3039aebb7;hb=2323b0ba8161892714c3aba9fc6a4212397e0283;hp=61cd9c24cd4e39cf23ce8bf3eb6b1658e11531a2;hpb=1a21a63d52b9ebf940cd35f041d675d39c9d474a;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/cleanupUploadStash.php b/maintenance/cleanupUploadStash.php index 61cd9c24cd..d255348374 100644 --- a/maintenance/cleanupUploadStash.php +++ b/maintenance/cleanupUploadStash.php @@ -33,7 +33,7 @@ require_once __DIR__ . '/Maintenance.php'; * * @ingroup Maintenance */ -class UploadStashCleanup extends Maintenance { +class CleanupUploadStash extends Maintenance { public function __construct() { parent::__construct(); @@ -152,5 +152,5 @@ class UploadStashCleanup extends Maintenance { } } -$maintClass = UploadStashCleanup::class; +$maintClass = CleanupUploadStash::class; require_once RUN_MAINTENANCE_IF_MAIN;