summaryrefslogtreecommitdiff
path: root/plugins/mobile/logout.php
blob: afc411abce7053ed20036c07c97bc0d38eb8054e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
	$basedir = dirname(dirname(dirname(__FILE__)));

	set_include_path(
		dirname(__FILE__) . PATH_SEPARATOR .
		$basedir . PATH_SEPARATOR .
		"$basedir/include" . PATH_SEPARATOR .
		get_include_path());

	require_once "mobile-functions.php";

	logout_user();

	header("Location: index.php");
?>