From dbaf32d0e88e96b42fd8a70a8b7bf7d9f161dce6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Wed, 13 Apr 2005 08:28:24 +0000 Subject: [PATCH] * Documented --- includes/SpecialMypage.php | 7 +++++-- includes/SpecialMytalk.php | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) 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 +?> -- 2.20.1