r64302 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r64301
|
r64302
|
r64303
>
Date:
19:23, 28 March 2010
Author:
reedy
Status:
ok
Tags:
Comment:
Switch if ordering as per Roans comment for
r64291
Modified paths:
/trunk/phase3/includes/api/ApiBase.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/api/ApiBase.php
—
—
@@ -543,7 +543,7 @@
544
544
return false;
545
545
case 'preferences':
546
546
global $wgUser;
547
- if ( $titleObj->exists() && !$titleObj->userIsWatching() && $wgUser->getOption( 'watchdefault' ) ) {
547
+ if ( $titleObj->exists() && $wgUser->getOption( 'watchdefault' ) && !$titleObj->userIsWatching() ) {
548
548
return true;
549
549
}
550
550
return null;
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r64291
Followup
r64197
...
reedy
15:08, 28 March 2010
Status & tagging log
19:25, 28 March 2010
Catrope
(
talk
|
contribs
)
changed the
status
of r64302
[
removed:
new
added:
ok]