From 1b245fa447e491b3d13fdc4651582f327a1e96b6 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sun, 29 May 2011 19:05:41 +0000 Subject: [PATCH] Broke long line --- includes/parser/Preprocessor_DOM.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/parser/Preprocessor_DOM.php b/includes/parser/Preprocessor_DOM.php index 39c9edd7a2..bb60a34f71 100644 --- a/includes/parser/Preprocessor_DOM.php +++ b/includes/parser/Preprocessor_DOM.php @@ -118,7 +118,8 @@ class Preprocessor_DOM implements Preprocessor { global $wgMemc, $wgPreprocessorCacheThreshold; $xml = false; - $cacheable = $wgPreprocessorCacheThreshold !== false && strlen( $text ) > $wgPreprocessorCacheThreshold; + $cacheable = ( $wgPreprocessorCacheThreshold !== false + && strlen( $text ) > $wgPreprocessorCacheThreshold ); if ( $cacheable ) { wfProfileIn( __METHOD__.'-cacheable' ); -- 2.20.1