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 @@
361
361
* @return Boolean
362
362
*/
363
363
public function isRevisionCurrent() {
364
- return $this->mRevisionId == 0 || $this->mRevisionId != $this->mTitle->getLatestRevID();
364
+ return $this->mRevisionId == 0 || $this->mRevisionId == $this->mTitle->getLatestRevID();
365
365
}
366
366
367
367
/**
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r80001
Simplify a bit:...
ialex
13:04, 11 January 2011
Status & tagging log
20:34, 15 April 2011
😂
(
talk
|
contribs
)
changed the
status
of r80002
[
removed:
new
added:
ok]