From 2b9290fa6b27aa856cd4c322c9946068a6ddf878 Mon Sep 17 00:00:00 2001 From: Platonides Date: Wed, 15 Sep 2010 16:58:44 +0000 Subject: [PATCH] Fix getDirty from r70783. --- includes/parser/ParserCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1