* (bug 1636) Refs like ţ were misinterpreted as octal in some places
[lhc/web/wiklou.git] / includes / SpecialMycontributions.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /** @todo document */
9 function wfSpecialMycontributions() {
10 global $wgUser, $wgOut;
11 $t = Title::makeTitle( NS_SPECIAL, 'Contributions' );
12 $url = $t->getFullURL( 'target=' . urlencode( $wgUser->getName() ) );
13 $wgOut->redirect( $url );
14 }
15 ?>