Split files and classes in different packages for phpdocumentor. I probably changed...
[lhc/web/wiklou.git] / includes / SpecialUserlogout.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /**
9 * constructor
10 */
11 function wfSpecialUserlogout() {
12 global $wgUser, $wgOut, $returnto;
13
14 $wgUser->logout();
15 $wgOut->mCookies = array();
16 $wgOut->setRobotpolicy( 'noindex,nofollow' );
17 $wgOut->addHTML( wfMsg( 'logouttext' ) );
18 $wgOut->returnToMain();
19 }
20
21 ?>