* (bug 13770) Use Preprocessor_Hash by default to avoid missing DOM module errors
authorBrion Vibber <brion@users.mediawiki.org>
Tue, 6 May 2008 00:01:12 +0000 (00:01 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Tue, 6 May 2008 00:01:12 +0000 (00:01 +0000)
RELEASE-NOTES
includes/DefaultSettings.php

index bf684d1..10e5c7c 100644 (file)
@@ -246,6 +246,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 13934) Fixing the link to GNU General Public License Version 2
 * Show correct accesskey prefix for Firefox 3 beta (Alt-Shift-, not Alt-)
 * (bug 13949) Special:PrefixIndex/AllPages paging links contain invalid XML
+* (bug 13770) Use Preprocessor_Hash by default to avoid missing DOM module errors
 
 === API changes in 1.13 ===
 
index 9b2928a..42ee7b5 100644 (file)
@@ -3128,10 +3128,9 @@ $wgSlaveLagCritical = 30;
  * Parser configuration. Associative array with the following members:
  *
  *  class             The class name
- *  preprocessorClass The preprocessor class, by default it is Preprocessor_DOM
- *                    but it has a dependency of the dom module of PHP. If you
- *                    don't have this module, you can use Preprocessor_Hash wich
- *                    has not this depedency.
+ *  preprocessorClass The preprocessor class, by default it is Preprocessor_Hash.
+ *                    Preprocessor_DOM is also available and better tested, but
+ *                    it has a dependency of the dom module of PHP.
  *                    It has no effect with Parser_OldPP parser class.
  *
  *
@@ -3144,7 +3143,7 @@ $wgSlaveLagCritical = 30;
  */
 $wgParserConf = array(
        'class' => 'Parser',
-       'preprocessorClass' => 'Preprocessor_DOM',
+       'preprocessorClass' => 'Preprocessor_Hash',
 );
 
 /**