Display something nicer looking when the wiki hasn't been configured.
[mediawiki.git] / includes / SpecialMypage.php
blob69e736f358281d33a4c0d7b6ef4e98b84a919f20
1 <?php
2 /**
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
8 /** @todo document */
9 function wfSpecialMypage() {
10 global $wgUser, $wgOut;
11 $t = Title::makeTitle( NS_USER, $wgUser->getName() );
12 $wgOut->redirect ($t->getFullURL());