]> git.wh0rd.org - tt-rss.git/blame - plugins/mobile/logout.php
Updated Swedish translation for 1.7.9
[tt-rss.git] / plugins / mobile / logout.php
CommitLineData
9d9ed2b3
AD
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?>