diff options
Diffstat (limited to 'includes/actions/Action.php')
-rw-r--r-- | includes/actions/Action.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/actions/Action.php b/includes/actions/Action.php index 88382b694fca..e8d9a3e4029a 100644 --- a/includes/actions/Action.php +++ b/includes/actions/Action.php @@ -151,7 +151,7 @@ abstract class Action implements MessageLocalizer { return 'view'; } - $action = Action::factory( $actionName, $context->getWikiPage(), $context ); + $action = self::factory( $actionName, $context->getWikiPage(), $context ); if ( $action instanceof Action ) { return $action->getName(); } @@ -388,7 +388,7 @@ abstract class Action implements MessageLocalizer { public function addHelpLink( $to, $overrideBaseUrl = false ) { global $wgContLang; $msg = wfMessage( $wgContLang->lc( - Action::getActionName( $this->getContext() ) + self::getActionName( $this->getContext() ) ) . '-helppage' ); if ( !$msg->isDisabled() ) { |