]> git.wh0rd.org - tt-rss.git/blob - plugins/mobile/logout.php
Merge branch 'master' of git://github.com/RaphaelRochet/Tiny-Tiny-RSS into RaphaelRoc...
[tt-rss.git] / plugins / mobile / logout.php
1 <?php
2 $basedir = dirname(dirname(dirname(__FILE__)));
3
4 set_include_path(
5 dirname(__FILE__) . PATH_SEPARATOR .
6 $basedir . PATH_SEPARATOR .
7 "$basedir/include" . PATH_SEPARATOR .
8 get_include_path());
9
10 require_once "mobile-functions.php";
11
12 logout_user();
13
14 header("Location: index.php");
15 ?>