Merge "Rewrite pref cleanup script"
[lhc/web/wiklou.git] / includes / parser / Preprocessor.php
index 627d112..49e961a 100644 (file)
@@ -70,7 +70,7 @@ abstract class Preprocessor {
                $length = strlen( $text );
                $threshold = $config->get( 'PreprocessorCacheThreshold' );
                if ( $threshold === false || $length < $threshold || $length > 1e6 ) {
-                       return false;
+                       return;
                }
 
                $cache = ObjectCache::getLocalClusterInstance();