* (bug 1938) Fix normalization of character references in link text and
[lhc/web/wiklou.git] / includes / SpecialMypage.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /**
9 * Redirects a user to hir personal page, used by buildPersonalUrls() in
10 * SkinTemplate.php.
11 */
12 function wfSpecialMypage() {
13 global $wgUser, $wgOut;
14 $t = Title::makeTitle( NS_USER, $wgUser->getName() );
15 $wgOut->redirect ($t->getFullURL());
16 }
17 ?>