blob: c8a0cb70fe78e99e5723f9853b66332f99121d72 (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
/*
* Renameuser file for b/c... this sucks
*/
require_once( __DIR__ . '/Renameuser.php' );
$wgExtensionFunctions[] = function() {
wfWarn( 'The deprecated entrypoint of SpecialRenameuser.php is being used. It will be removed in a future release. Use Renameuser.php instead' );
};
|