X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FcleanupWatchlist.php;h=5e3aee7402d2ab99aa0d773486f4c7a20f7b0206;hb=f459a71f75941a83335d6d63ee12079a4b586793;hp=64d39dd6c88565c750533be714a7192b5b5ebd0e;hpb=577f3d79115173f4dd16bb46f6d0ef2c82b55add;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/cleanupWatchlist.php b/maintenance/cleanupWatchlist.php index 64d39dd6c8..5e3aee7402 100644 --- a/maintenance/cleanupWatchlist.php +++ b/maintenance/cleanupWatchlist.php @@ -36,7 +36,7 @@ require_once __DIR__ . '/cleanupTable.inc'; * * @ingroup Maintenance */ -class WatchlistCleanup extends TableCleanup { +class CleanupWatchlist extends TableCleanup { protected $defaultParams = [ 'table' => 'watchlist', 'index' => [ 'wl_user', 'wl_namespace', 'wl_title' ], @@ -95,5 +95,5 @@ class WatchlistCleanup extends TableCleanup { } } -$maintClass = WatchlistCleanup::class; +$maintClass = CleanupWatchlist::class; require_once RUN_MAINTENANCE_IF_MAIN;