X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FformatInstallDoc.php;h=3d34be147767db500561e1ef714b8e4afd1d3935;hb=2abce6a65de98b62e1adda0bd0fd770ec9a1fe24;hp=dbaeb867d29b98d021eb68861d36404d99c779f5;hpb=c2adecb31b16a36efdb509a575533c7f103a0576;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/formatInstallDoc.php b/maintenance/formatInstallDoc.php index dbaeb867d2..3d34be1477 100644 --- a/maintenance/formatInstallDoc.php +++ b/maintenance/formatInstallDoc.php @@ -28,7 +28,7 @@ require_once __DIR__ . '/Maintenance.php'; * * @ingroup Maintenance */ -class MaintenanceFormatInstallDoc extends Maintenance { +class FormatInstallDoc extends Maintenance { function __construct() { parent::__construct(); $this->addArg( 'path', 'The file name to format', false ); @@ -72,5 +72,5 @@ class MaintenanceFormatInstallDoc extends Maintenance { } } -$maintClass = MaintenanceFormatInstallDoc::class; +$maintClass = FormatInstallDoc::class; require_once RUN_MAINTENANCE_IF_MAIN;