r80002 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r80001‎ | r80002 | r80003 >
Date:13:08, 11 January 2011
Author:ialex
Status:ok
Tags:
Comment:
Seems there was a logic error in r80001 :)
Modified paths:
  • /trunk/phase3/includes/Skin.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/Skin.php
@@ -360,7 +360,7 @@
361361 * @return Boolean
362362 */
363363 public function isRevisionCurrent() {
364 - return $this->mRevisionId == 0 || $this->mRevisionId != $this->mTitle->getLatestRevID();
 364+ return $this->mRevisionId == 0 || $this->mRevisionId == $this->mTitle->getLatestRevID();
365365 }
366366
367367 /**

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r80001Simplify a bit:...ialex13:04, 11 January 2011

Status & tagging log