Translation checker added (nl: fixed); more conditional inclusion; misc. tweaks
[lhc/web/wiklou.git] / includes / SpecialUserlogout.php
1 <?
2
3 function wfSpecialUserlogout()
4 {
5 global $wgUser, $wgOut, $returnto;
6
7 $wgUser->logout();
8 $wgOut->setRobotpolicy( "noindex,nofollow" );
9 $wgOut->addHTML( wfMsg( "logouttext" ) . "\n<p>" );
10 $wgOut->returnToMain();
11 }
12
13 ?>