From: Alexandre Emsenhuber Date: Tue, 11 Jan 2011 13:08:28 +0000 (+0000) Subject: Seems there was a logic error in r80001 :) X-Git-Tag: 1.31.0-rc.0~32630 X-Git-Url: http://git.cyclocoop.org/wiki/Target_page?a=commitdiff_plain;h=28cdedf7c289dc4635d3279684aba86c42daa683;p=lhc%2Fweb%2Fwiklou.git Seems there was a logic error in r80001 :) --- 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(); } /**