various changes aimed at making a bare-bones 1.3 command line installer, for wikimedia
[lhc/web/wiklou.git] / maintenance / convertLinks.php
1 <?php
2 # Convert from the old links schema (string->ID) to the new schema (ID->ID)
3 # The wiki should be put into read-only mode while this script executes
4
5 require_once( "commandLine.inc" );
6 # the below should probably be moved into commandLine.inc at some point
7 require_once( "../AdminSettings.php" );
8 require_once( "convertLinks.inc" );
9
10 convertLinks();
11
12 ?>