BUG#1402 Make link color of tab subject page link on talk page indicate whether artic...
[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 $wgOut->redirect ( $t->getFullURL().'&target='.$wgUser->getName() );
13 }
14 ?>