* Moved content from liveCmdLine.inc into commandLine.inc, obsoleting the former.
[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 require_once( "convertLinks.inc" );
7
8 convertLinks();
9
10 ?>