Index: trunk/phase3/includes/parser/ParserCache.php |
— | — | @@ -74,7 +74,7 @@ |
75 | 75 | * Retrieve the ParserOutput from ParserCache, even if it's outdated. |
76 | 76 | */ |
77 | 77 | public function getDirty( $article, $popts ) { |
78 | | - $value = $this->mMemc->get( $article, $popts, true ); |
| 78 | + $value = $this->get( $article, $popts, true ); |
79 | 79 | return is_object( $value ) ? $value : false; |
80 | 80 | } |
81 | 81 | |