From: Ævar Arnfjörð Bjarmason Date: Wed, 13 Apr 2005 08:28:24 +0000 (+0000) Subject: * Documented X-Git-Tag: 1.5.0alpha1~279 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=dbaf32d0e88e96b42fd8a70a8b7bf7d9f161dce6;p=lhc%2Fweb%2Fwiklou.git * Documented --- diff --git a/includes/SpecialMypage.php b/includes/SpecialMypage.php index 69e736f358..f1c6199796 100644 --- a/includes/SpecialMypage.php +++ b/includes/SpecialMypage.php @@ -5,10 +5,13 @@ * @subpackage SpecialPage */ -/** @todo document */ +/** + * Redirects a user to hir personal page, used by buildPersonalUrls() in + * SkinTemplate.php. + */ function wfSpecialMypage() { global $wgUser, $wgOut; $t = Title::makeTitle( NS_USER, $wgUser->getName() ); $wgOut->redirect ($t->getFullURL()); } -?> \ No newline at end of file +?> diff --git a/includes/SpecialMytalk.php b/includes/SpecialMytalk.php index 7f92711cfb..428d6c3819 100644 --- a/includes/SpecialMytalk.php +++ b/includes/SpecialMytalk.php @@ -5,10 +5,13 @@ * @subpackage SpecialPage */ -/** @todo document */ +/** + * Redirects a user to hir talk page, used by buildPersonalUrls() in + * SkinTemplate.php. + */ function wfSpecialMytalk() { global $wgUser, $wgOut; $t = Title::makeTitle( NS_USER_TALK, $wgUser->getName() ); $wgOut->redirect ($t->getFullURL()); } -?> \ No newline at end of file +?>