From: Platonides Date: Wed, 15 Sep 2010 16:58:44 +0000 (+0000) Subject: Fix getDirty from r70783. X-Git-Tag: 1.31.0-rc.0~34913 X-Git-Url: https://git.cyclocoop.org/admin/?a=commitdiff_plain;h=2b9290fa6b27aa856cd4c322c9946068a6ddf878;p=lhc%2Fweb%2Fwiklou.git Fix getDirty from r70783. --- diff --git a/includes/parser/ParserCache.php b/includes/parser/ParserCache.php index cb2275a758..adbbd18a47 100644 --- a/includes/parser/ParserCache.php +++ b/includes/parser/ParserCache.php @@ -74,7 +74,7 @@ class ParserCache { * Retrieve the ParserOutput from ParserCache, even if it's outdated. */ public function getDirty( $article, $popts ) { - $value = $this->mMemc->get( $article, $popts, true ); + $value = $this->get( $article, $popts, true ); return is_object( $value ) ? $value : false; }