summaryrefslogtreecommitdiff
path: root/maintenance/convertLinks.php
blob: 6d07df50f1a2d4924fe6b1b2f91fee5e5581087f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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
 *
 * @addtogroup Maintenance
 */

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

convertLinks();

?>