Remove hardcoded CSS ...
[lhc/web/wiklou.git] / includes / SpecialMycontributions.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
13 function wfSpecialMycontributions() {
14 global $wgUser, $wgOut;
15 $t = Title::makeTitle( NS_SPECIAL, 'Contributions' );
16 $url = $t->getFullURL( 'target=' . urlencode( $wgUser->getName() ) );
17 $wgOut->redirect( $url );
18 }
19 ?>