remove unused variable
[lhc/web/wiklou.git] / includes / Defines.php
index ab7507a..c93ba95 100644 (file)
@@ -23,6 +23,11 @@ define('NS_SPECIAL', -1);
 
 /**#@+
  * Real namespaces
+ *
+ * Number 100 and beyond are reserved for custom namespaces;
+ * DO NOT assign standard namespaces at 100 or beyond.
+ * DO NOT Change integer values as they are most probably hardcoded everywhere
+ * see bug #696 which talked about that.
  */
 define('NS_MAIN', 0);
 define('NS_TALK', 1);
@@ -77,7 +82,7 @@ define( 'MW_MATH_MATHML', 5 );
  * database.
  */
 $wgAvailableRights = array('read', 'edit', 'move', 'delete', 'undelete',
-'protect', 'block', 'userrights', 'createaccount', 'upload', 'asksql',
-'rollback', 'patrol', 'editinterface', 'siteadmin', 'bot');
+'protect', 'block', 'userrights', 'grouprights', 'createaccount', 'upload',
+'asksql', 'rollback', 'patrol', 'editinterface', 'siteadmin', 'bot');
 
 ?>