Undo previous commit. Schema changes are a no-no without permission first :-)
[lhc/web/wiklou.git] / maintenance / namespace2sql.php
index 081f609..43a8cc6 100644 (file)
@@ -1,7 +1,11 @@
 <?php
-#
-# Print SQL to insert namespace names into database.
-# This source code is in the public domain.
+/**
+ * Print SQL to insert namespace names into database.
+ * This source code is in the public domain.
+ *
+ * @file
+ * @ingroup Maintenance
+ */
 
 require_once( "commandLine.inc" );
 
@@ -11,4 +15,4 @@ for ($i = -2; $i < 16; ++$i) {
        print "INSERT INTO ns_name(ns_db, ns_num, ns_name) VALUES('$dbname', $i, '$nsname');\n";
 }
 
-?>
+