From 681cac69762d2d32f7e1bb66f3275662592e332d Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 24 Jun 2011 17:15:27 +0000 Subject: [PATCH] Simplify a bit by using getRawText() instead of creating a Revision object --- includes/Article.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/includes/Article.php b/includes/Article.php index efb1490f3c..d66795dcba 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -363,13 +363,12 @@ class Article { * @return mixed string on success, false on failure */ public function getUndoText( Revision $undo, Revision $undoafter = null ) { - $currentRev = Revision::newFromTitle( $this->mTitle ); - if ( !$currentRev ) { + $cur_text = $this->getRawText(); + if ( $cur_text === false ) { return false; // no page } $undo_text = $undo->getText(); $undoafter_text = $undoafter->getText(); - $cur_text = $currentRev->getText(); if ( $cur_text == $undo_text ) { # No use doing a merge if it's just a straight revert. -- 2.20.1