aboutsummaryrefslogtreecommitdiffstats
path: root/includes/SpecialUserlogout.php
blob: 182c9bf254284f184d3bbcfc809c4496cc5b04d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

function wfSpecialUserlogout()
{
	global $wgUser, $wgOut, $returnto;

	$wgUser->logout();
	$wgOut->mCookies = array();
	$wgOut->setRobotpolicy( "noindex,nofollow" );
	$wgOut->addHTML( wfMsg( "logouttext" ) );
	$wgOut->returnToMain();
}

?>