16 lines
316 B
PHP
16 lines
316 B
PHP
<?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();
|
|
|
|
?>
|