From: Ævar Arnfjörð Bjarmason Date: Thu, 28 Apr 2005 20:38:10 +0000 (+0000) Subject: * Documented X-Git-Tag: 1.5.0alpha1~83 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=4405d20fa0dae7178df7cf5dfc75d5536bc0ffee;p=lhc%2Fweb%2Fwiklou.git * Documented --- diff --git a/includes/SpecialMycontributions.php b/includes/SpecialMycontributions.php index 7d83d6d03e..29262a5e86 100644 --- a/includes/SpecialMycontributions.php +++ b/includes/SpecialMycontributions.php @@ -5,11 +5,15 @@ * @subpackage SpecialPage */ -/** @todo document */ +/** + * Redirects a user to hir personal page, used by buildPersonalUrls() in + * SkinTemplate.php. + */ + function wfSpecialMycontributions() { global $wgUser, $wgOut; $t = Title::makeTitle( NS_SPECIAL, 'Contributions' ); $url = $t->getFullURL( 'target=' . urlencode( $wgUser->getName() ) ); $wgOut->redirect( $url ); } -?> \ No newline at end of file +?>