Broke long line
authorAaron Schulz <aaron@users.mediawiki.org>
Sun, 29 May 2011 19:05:41 +0000 (19:05 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Sun, 29 May 2011 19:05:41 +0000 (19:05 +0000)
includes/parser/Preprocessor_DOM.php

index 39c9edd..bb60a34 100644 (file)
@@ -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' );