From e32fffd3df2185d4df8483435c997024c927df22 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Tue, 10 Jun 2008 17:14:36 +0000 Subject: [PATCH] Fix the default preprocessor here as well. --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Parser.php b/includes/Parser.php index a97c8bec6e..d8540a0655 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -134,7 +134,7 @@ class Parser if ( isset( $conf['preprocessorClass'] ) ) { $this->mPreprocessorClass = $conf['preprocessorClass']; } else { - $this->mPreprocessorClass = 'Preprocessor_DOM'; + $this->mPreprocessorClass = 'Preprocessor_Hash'; } $this->mMarkerIndex = 0; $this->mFirstCall = true; -- 2.20.1