Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -3128,10 +3128,9 @@ |
3129 | 3129 | * Parser configuration. Associative array with the following members: |
3130 | 3130 | * |
3131 | 3131 | * class The class name |
3132 | | - * preprocessorClass The preprocessor class, by default it is Preprocessor_DOM |
3133 | | - * but it has a dependency of the dom module of PHP. If you |
3134 | | - * don't have this module, you can use Preprocessor_Hash wich |
3135 | | - * has not this depedency. |
| 3132 | + * preprocessorClass The preprocessor class, by default it is Preprocessor_Hash. |
| 3133 | + * Preprocessor_DOM is also available and better tested, but |
| 3134 | + * it has a dependency of the dom module of PHP. |
3136 | 3135 | * It has no effect with Parser_OldPP parser class. |
3137 | 3136 | * |
3138 | 3137 | * |
— | — | @@ -3144,7 +3143,7 @@ |
3145 | 3144 | */ |
3146 | 3145 | $wgParserConf = array( |
3147 | 3146 | 'class' => 'Parser', |
3148 | | - 'preprocessorClass' => 'Preprocessor_DOM', |
| 3147 | + 'preprocessorClass' => 'Preprocessor_Hash', |
3149 | 3148 | ); |
3150 | 3149 | |
3151 | 3150 | /** |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -246,6 +246,7 @@ |
247 | 247 | * (bug 13934) Fixing the link to GNU General Public License Version 2 |
248 | 248 | * Show correct accesskey prefix for Firefox 3 beta (Alt-Shift-, not Alt-) |
249 | 249 | * (bug 13949) Special:PrefixIndex/AllPages paging links contain invalid XML |
| 250 | +* (bug 13770) Use Preprocessor_Hash by default to avoid missing DOM module errors |
250 | 251 | |
251 | 252 | === API changes in 1.13 === |
252 | 253 | |