* Documented
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Thu, 28 Apr 2005 20:38:10 +0000 (20:38 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Thu, 28 Apr 2005 20:38:10 +0000 (20:38 +0000)
includes/SpecialMycontributions.php

index 7d83d6d..29262a5 100644 (file)
@@ -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
+?>