Fix for Special:Export so it doesn't ignore the page named '0'.
[lhc/web/wiklou.git] / maintenance / convertLinks.php
index 62b41eb..bc0aef4 100644 (file)
@@ -1,12 +1,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
+/**
+ * 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" );
-# the below should probably be moved into commandLine.inc at some point
-require_once( "../AdminSettings.php" );
 require_once( "convertLinks.inc" );
 
 convertLinks();
 
-?>
+