introduced "import" right for Special:Import
[lhc/web/wiklou.git] / includes / SpecialMypage.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /** @todo document */
9 function wfSpecialMypage() {
10 global $wgUser, $wgOut;
11 $t = Title::makeTitle( NS_USER, $wgUser->getName() );
12 $wgOut->redirect ($t->getFullURL());
13 }
14 ?>