X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=blobdiff_plain;f=includes%2FSpecialPageFactory.php;h=6a73a1dfc724748e0499ddef9f671430c83401ea;hb=2849d8a6b3542795d230515a600670533adb2692;hp=719763c1aab47108380799175c939189719f2f90;hpb=fac1ec45f1201c913f4dc1dc7a2a31d21f77993c;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/SpecialPageFactory.php b/includes/SpecialPageFactory.php index 719763c1aa..6a73a1dfc7 100644 --- a/includes/SpecialPageFactory.php +++ b/includes/SpecialPageFactory.php @@ -99,7 +99,6 @@ class SpecialPageFactory { 'Listusers' => 'SpecialListUsers', 'Listadmins' => 'SpecialListAdmins', 'Listbots' => 'SpecialListBots', - 'Activeusers' => 'SpecialActiveUsers', 'Userrights' => 'UserrightsPage', 'EditWatchlist' => 'SpecialEditWatchlist', @@ -162,6 +161,7 @@ class SpecialPageFactory { 'Mytalk' => 'SpecialMytalk', 'Myuploads' => 'SpecialMyuploads', 'PermanentLink' => 'SpecialPermanentLink', + 'Redirect' => 'SpecialRedirect', 'Revisiondelete' => 'SpecialRevisionDelete', 'Specialpages' => 'SpecialSpecialpages', 'Userlogout' => 'SpecialUserlogout', @@ -200,7 +200,7 @@ class SpecialPageFactory { self::$mList['ChangeEmail'] = 'SpecialChangeEmail'; } - if( $wgEnableJavaScriptTest ) { + if ( $wgEnableJavaScriptTest ) { self::$mList['JavaScriptTest'] = 'SpecialJavaScriptTest'; } @@ -222,7 +222,7 @@ class SpecialPageFactory { /** * Initialise and return the list of special page aliases. Returns an object with * properties which can be accessed $obj->pagename - each property is an array of - * aliases; the first in the array is the cannonical alias. All registered special + * aliases; the first in the array is the canonical alias. All registered special * pages are guaranteed to have a property entry, and for that property array to * contain at least one entry (English fallbacks will be added if necessary). * @return Object @@ -466,7 +466,7 @@ class SpecialPageFactory { unset( $query['title'] ); $query = wfArrayToCgi( $query ); $title = $page->getTitle( $par ); - $url = $title->getFullUrl( $query ); + $url = $title->getFullURL( $query ); $context->getOutput()->redirect( $url ); wfProfileOut( __METHOD__ ); return $title;