Merge "maintenance: Move cleanupTable from .inc to .php"
This commit is contained in:
commit
b1308abc3d
7 changed files with 5 additions and 6 deletions
|
|
@ -79,7 +79,6 @@
|
|||
<exclude-pattern>*/maintenance/benchmarks/bench_if_switch\.php</exclude-pattern>
|
||||
<exclude-pattern>*/maintenance/benchmarks/bench_utf8_title_check\.php</exclude-pattern>
|
||||
<exclude-pattern>*/maintenance/benchmarks/bench_wfIsWindows\.php</exclude-pattern>
|
||||
<exclude-pattern>*/maintenance/cleanupTable.inc</exclude-pattern>
|
||||
<exclude-pattern>*/maintenance/cleanupTitles\.php</exclude-pattern>
|
||||
<exclude-pattern>*/maintenance/edit\.php</exclude-pattern>
|
||||
<exclude-pattern>*/maintenance/findDeprecated\.php</exclude-pattern>
|
||||
|
|
|
|||
|
|
@ -1652,7 +1652,7 @@ $wgAutoloadLocalClasses = [
|
|||
'SwiftFileOpHandle' => __DIR__ . '/includes/libs/filebackend/fileophandle/SwiftFileOpHandle.php',
|
||||
'SwiftVirtualRESTService' => __DIR__ . '/includes/libs/virtualrest/SwiftVirtualRESTService.php',
|
||||
'SyncFileBackend' => __DIR__ . '/maintenance/syncFileBackend.php',
|
||||
'TableCleanup' => __DIR__ . '/maintenance/cleanupTable.inc',
|
||||
'TableCleanup' => __DIR__ . '/maintenance/TableCleanup.php',
|
||||
'TableDiffFormatter' => __DIR__ . '/includes/diff/TableDiffFormatter.php',
|
||||
'TablePager' => __DIR__ . '/includes/pager/TablePager.php',
|
||||
'TagLogFormatter' => __DIR__ . '/includes/logging/TagLogFormatter.php',
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
use MediaWiki\MediaWikiServices;
|
||||
|
||||
require_once __DIR__ . '/cleanupTable.inc';
|
||||
require_once __DIR__ . '/TableCleanup.php';
|
||||
|
||||
/**
|
||||
* Maintenance script to clean up broken page links when somebody turns
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
use MediaWiki\MediaWikiServices;
|
||||
|
||||
require_once __DIR__ . '/cleanupTable.inc';
|
||||
require_once __DIR__ . '/TableCleanup.php';
|
||||
|
||||
/**
|
||||
* Maintenance script to clean up broken, unparseable upload filenames.
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
use MediaWiki\MediaWikiServices;
|
||||
|
||||
require_once __DIR__ . '/cleanupTable.inc';
|
||||
require_once __DIR__ . '/TableCleanup.php';
|
||||
|
||||
/**
|
||||
* Maintenance script to clean up broken, unparseable titles.
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
use MediaWiki\MediaWikiServices;
|
||||
|
||||
require_once __DIR__ . '/cleanupTable.inc';
|
||||
require_once __DIR__ . '/TableCleanup.php';
|
||||
|
||||
/**
|
||||
* Maintenance script to remove broken, unparseable titles in the watchlist table.
|
||||
|
|
|
|||
Loading…
Reference in a new issue