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:
24
backend.php
24
backend.php
@@ -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") {
|
||||
|
||||
Reference in New Issue
Block a user