r112074 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r112073
|
r112074
|
r112075
>
Date:
01:53, 22 February 2012
Author:
reedy
Status:
ok (
Comments
)
Tags:
Comment:
Falling through to the floor is going to end in tears
Ping
r104236
Modified paths:
/trunk/extensions/CentralAuth/specials/SpecialMergeAccount.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/extensions/CentralAuth/specials/SpecialMergeAccount.php
—
—
@@ -57,16 +57,22 @@
58
58
switch( $this->mMergeAction ) {
59
59
case "dryrun":
60
60
$this->doDryRunMerge();
61
+ break;
61
62
case "initial":
62
63
$this->doInitialMerge();
64
+ break;
63
65
case "cleanup":
64
66
$this->doCleanupMerge();
67
+ break;
65
68
case "attach":
66
69
$this->doAttachMerge();
70
+ break;
67
71
case "remove":
68
- $this->doUnattach();
72
+ $this->doUnattach(); // FIXME: Method is undefined
73
+ break;
69
74
default:
70
- $this->invalidAction();
75
+ $this->invalidAction(); // FIXME: Method is undefined
76
+ break;
71
77
}
72
78
return;
73
79
}
Follow-up revisions
Revision
Commit summary
Author
Date
r112075
MFT
r112074
reedy
01:56, 22 February 2012
r112648
MFT
r112074
,
r112153
,
r112295
,
r112517
,
r112562
,
r112628
reedy
21:43, 28 February 2012
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r104236
Update comments, some braces...
reedy
12:53, 25 November 2011
Comments
#
Comment by
Nikerabbit
(
talk
|
contribs
)
08:12, 22 February 2012
Classical.
Status & tagging log
21:43, 28 February 2012
Reedy
(
talk
|
contribs
)
changed the
tags
for r112074
[
removed:
1.19]
02:01, 22 February 2012
Aaron Schulz
(
talk
|
contribs
)
changed the
status
of r112074
[
removed:
new
added:
ok]
01:57, 22 February 2012
Reedy
(
talk
|
contribs
)
changed the
tags
for r112074
[
added:
1.19]