r94486 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r94485
|
r94486
|
r94487
>
Date:
04:02, 15 August 2011
Author:
skizzerz
Status:
ok
Tags:
Comment:
* Follow-up to
r91284
: fix error in Action::exists by passing empty array as required second parameter to Action::getClass
Modified paths:
/trunk/phase3/includes/Action.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/Action.php
—
—
@@ -92,7 +92,7 @@
93
93
* @return Bool
94
94
*/
95
95
public final static function exists( $name ) {
96
- return self::getClass( $name ) !== null;
96
+ return self::getClass( $name, array() ) !== null;
97
97
}
98
98
99
99
/**
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r91284
* Changed action=revert to use a subclass of Action...
ialex
20:07, 1 July 2011
Status & tagging log
07:18, 15 August 2011
Aaron Schulz
(
talk
|
contribs
)
changed the
status
of r94486
[
removed:
new
added:
ok]