phpdoc comments
[lhc/web/wiklou.git] / includes / SpecialMycontributions.php
1 <?php
2 function wfSpecialMycontributions() {
3 global $wgUser, $wgOut;
4 $t = Title::makeTitle( NS_SPECIAL, 'Contributions' );
5 $wgOut->redirect ( $t->getFullURL().'&target='.$wgUser->getName() );
6 }
7 ?>