]> git.wh0rd.org - tt-rss.git/blame - logout.php
option to enable feed categories
[tt-rss.git] / logout.php
CommitLineData
99620a7f
AD
1<?
2 session_start();
3
8cb74804 4 require_once "config.php";
b8aa49bc 5 require_once "functions.php";
8cb74804 6
b8aa49bc 7 logout_user();
99620a7f 8
8cb74804
AD
9 if (!USE_HTTP_AUTH) {
10 header("Location: login.php");
11 } else {
12 header("Location: tt-rss.php");
13 }
99620a7f 14?>