Get ride of the username in links when user is logged in.
[lhc/web/wiklou.git] / includes / SpecialMytalk.php
1 <?php
2 function wfSpecialMytalk() {
3 global $wgUser, $wgOut;
4 $t = Title::makeTitle( NS_USER_TALK, $wgUser->getName() );
5 $wgOut->redirect ($t->getFullURL());
6 }
7 ?>