Fix for Special:Export so it doesn't ignore the page named '0'.
[lhc/web/wiklou.git] / maintenance / convertLinks.php
index 3511e40..bc0aef4 100644 (file)
@@ -1,10 +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" );
 require_once( "convertLinks.inc" );
 
 convertLinks();
 
-?>
+