From a2653cd21b00b4b7863a55eeb3c41fea08975fff Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Mon, 3 Jan 2011 17:12:27 +0000 Subject: [PATCH] no need to set $this->mOldId, this is already done in getOldID() --- includes/Article.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/includes/Article.php b/includes/Article.php index 506b7414a2..40310052e0 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -401,9 +401,7 @@ class Article { wfProfileIn( __METHOD__ ); - $oldid = $this->getOldID(); - $this->mOldId = $oldid; - $this->fetchContent( $oldid ); + $this->fetchContent( $this->getOldID() ); wfProfileOut( __METHOD__ ); } -- 2.20.1