1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-24 10:01:28 +00:00

automatically logout user when session expires

This commit is contained in:
Andrew Dolgov
2005-11-19 15:46:23 +01:00
parent d34169139c
commit 262bd8ea53
3 changed files with 30 additions and 10 deletions

View File

@@ -1,7 +1,21 @@
<?
session_start();
if (!$_SESSION["uid"]) { exit; }
$op = $_REQUEST["op"];
if (($op == "rpc" || $op == "updateAllFeeds" ||
$op == "forceUpdateAllFeeds") && !$_REQUEST["noxml"]) {
header("Content-Type: application/xml");
}
if (!$_SESSION["uid"]) {
if (($op == "rpc" || $op == "updateAllFeeds" ||
$op == "forceUpdateAllFeeds")) {
print "<error error-code=\"6\"/>";
}
exit;
}
define(SCHEMA_VERSION, 2);
@@ -11,12 +25,6 @@
require_once "functions.php";
require_once "magpierss/rss_fetch.inc";
$op = $_REQUEST["op"];
if (($op == "rpc" || $op == "updateAllFeeds") && !$_REQUEST["noxml"]) {
header("Content-Type: application/xml");
}
$script_started = getmicrotime();
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
@@ -417,7 +425,7 @@
$error_code = 5;
}
print "<error code='$error_code'/>";
print "<error error-code='$error_code'/>";
}
if ($subop == "globalPurge") {