summaryrefslogtreecommitdiff
path: root/maintenance/convertLinks.php
blob: 5939b943b0a8fb37bfe8633a49bf5f6eb825a455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/**
 * Convert from the old links schema (string->ID) to the new schema (ID->ID)
 * The wiki should be put into read-only mode while this script executes
 *
 * @package MediaWiki
 * @subpackage Maintenance
 */

/** */
require_once( "commandLine.inc" );
require_once( "convertLinks.inc" );

convertLinks();

?>