]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - maintenance/convertLinks.php
MediaWiki 1.11.0
[autoinstalls/mediawiki.git] / maintenance / convertLinks.php
1 <?php
2 /**
3  * Convert from the old links schema (string->ID) to the new schema (ID->ID)
4  * The wiki should be put into read-only mode while this script executes
5  *
6  * @addtogroup Maintenance
7  */
8
9 /** */
10 require_once( "commandLine.inc" );
11 require_once( "convertLinks.inc" );
12
13 convertLinks();
14
15