From 28cdedf7c289dc4635d3279684aba86c42daa683 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Tue, 11 Jan 2011 13:08:28 +0000 Subject: [PATCH] Seems there was a logic error in r80001 :) --- includes/Skin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Skin.php b/includes/Skin.php index d0da97c162..25b0b56e50 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -360,7 +360,7 @@ class Skin extends Linker { * @return Boolean */ public function isRevisionCurrent() { - return $this->mRevisionId == 0 || $this->mRevisionId != $this->mTitle->getLatestRevID(); + return $this->mRevisionId == 0 || $this->mRevisionId == $this->mTitle->getLatestRevID(); } /** -- 2.20.1