From 1d8b80f7ae6d693196887c6166e64a9fca4ee5c1 Mon Sep 17 00:00:00 2001 From: Happy-melon Date: Mon, 18 Apr 2011 19:44:52 +0000 Subject: [PATCH] Follow-up r86255: getTitleFor() was not migrated. --- includes/SpecialPage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index 756c337875..5f0c9709e8 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -697,9 +697,9 @@ abstract class SpecialRedirectToSpecial extends UnlistedSpecialPage { function getRedirect( $subpage ) { if ( $this->redirSubpage === false ) { - return SpecialPageFactory::getTitleFor( $this->redirName, $subpage ); + return SpecialPage::getTitleFor( $this->redirName, $subpage ); } else { - return SpecialPageFactory::getTitleFor( $this->redirName, $this->redirSubpage ); + return SpecialPage::getTitleFor( $this->redirName, $this->redirSubpage ); } } } -- 2.20.1