r104349 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r104348
|
r104349
|
r104350
>
Date:
17:27, 27 November 2011
Author:
robin
Status:
ok (
Comments
)
Tags:
Comment:
follow-up
r104347
: doesn't seem to change anything, but no other function in the class is called statically, so I'll keep it consistent
Modified paths:
/trunk/extensions/CentralAuth/specials/SpecialCentralAuth.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/extensions/CentralAuth/specials/SpecialCentralAuth.php
—
—
@@ -698,7 +698,7 @@
699
699
function determineHomeWiki() {
700
700
foreach ( $this->mAttachedLocalAccounts as $wiki => $acc ) {
701
701
if ( $acc['attachedMethod'] == 'primary' || $acc['attachedMethod'] == 'new' ) {
702
- return self::foreignUserLink( $wiki );
702
+ return $this->foreignUserLink( $wiki );
703
703
}
704
704
}
705
705
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r104347
* (
bug 23280
) Show servername instead of dbname for home wiki on Special:Cent...
robin
17:20, 27 November 2011
Comments
#
Comment by
Johnduhart
(
talk
|
contribs
)
17:33, 27 November 2011
Yes, don't call non-static functions statically.
Status & tagging log
17:33, 27 November 2011
Johnduhart
(
talk
|
contribs
)
changed the
status
of r104349
[
removed:
new
added:
ok]