Tweak for r29770 (yes, some months after it):
[lhc/web/wiklou.git] / includes / MagicWord.php
index 4f5148a..cabd394 100644 (file)
@@ -3,7 +3,8 @@
  * File for magic words
  * See docs/magicword.txt
  *
- * @addtogroup Parser
+ * @file
+ * @ingroup Parser
  */
 
 /**
@@ -22,6 +23,7 @@
  * magic words which are also Parser variables, add a MagicWordwgVariableIDs
  * hook. Use string keys.
  *
+ * @ingroup Parser
  */
 class MagicWord {
        /**#@+
@@ -103,6 +105,8 @@ class MagicWord {
                'numberofadmins',
                'defaultsort',
                'pagesincategory',
+               'index',
+               'noindex',
        );
 
        /* Array of caching hints for ParserCache */
@@ -151,6 +155,9 @@ class MagicWord {
                'noeditsection',
                'newsectionlink',
                'hiddencat',
+               'index',
+               'noindex',
+               'staticredirect',
        );
 
 
@@ -466,6 +473,7 @@ class MagicWord {
 
 /**
  * Class for handling an array of magic words
+ * @ingroup Parser
  */
 class MagicWordArray {
        var $names = array();