Fix getDirty from r70783.
authorPlatonides <platonides@users.mediawiki.org>
Wed, 15 Sep 2010 16:58:44 +0000 (16:58 +0000)
committerPlatonides <platonides@users.mediawiki.org>
Wed, 15 Sep 2010 16:58:44 +0000 (16:58 +0000)
includes/parser/ParserCache.php

index cb2275a..adbbd18 100644 (file)
@@ -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;
        }