* Removed exifReader.inc and added a function which does roughly the same
[lhc/web/wiklou.git] / includes / SpecialMytalk.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /**
9 * Redirects a user to hir talk page, used by buildPersonalUrls() in
10 * SkinTemplate.php.
11 */
12 function wfSpecialMytalk() {
13 global $wgUser, $wgOut;
14 $t = Title::makeTitle( NS_USER_TALK, $wgUser->getName() );
15 $wgOut->redirect ($t->getFullURL());
16 }
17 ?>