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

merge logout.php inside backend.php

This commit is contained in:
Andrew Dolgov
2011-04-20 00:14:37 +04:00
parent e31ed61af3
commit 1ca77e0acd
6 changed files with 25 additions and 26 deletions

View File

@@ -60,7 +60,7 @@
if (!($_SESSION["uid"] && validate_session($link)) && $op != "globalUpdateFeeds" &&
$op != "rss" && $op != "getUnread" && $op != "getProfiles" &&
$op != "pubsub") {
$op != "logout" && $op != "pubsub") {
header("Content-Type: text/plain");
print json_encode(array("error" => array("code" => 6)));
@@ -571,6 +571,16 @@
}
break;
case "logout":
logout_user();
header("Location: tt-rss.php");
break;
default:
header("Content-Type: text/plain");
print json_encode(array("error" => array("code" => 7)));
break;
} // Select action according to $op value.
// We close the connection to database.

View File

@@ -155,7 +155,7 @@ function confirmOP() {
print "<p>".T_sprintf("Finished. Performed <b>%d</b> update(s) up to schema
version <b>%d</b>.", $num_updates, $version)."</p>";
print "<form method=\"GET\" action=\"logout.php\">
print "<form method=\"GET\" action=\"backend.php?op=logout\">
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
</form>";

View File

@@ -71,7 +71,7 @@
<?php } ?>
<?php if (!SINGLE_USER_MODE) { ?>
<a href="logout.php"><?php echo __('Logout') ?></a>
<a href="backend.php?op=logout"><?php echo __('Logout') ?></a>
<?php } ?>
</div>

View File

@@ -1,11 +0,0 @@
<?php
require_once "functions.php";
require_once "sessions.php";
require_once "sanity_check.php";
require_once "version.php";
require_once "config.php";
require_once "db-prefs.php";
logout_user();
header("Location: tt-rss.php");
?>

View File

@@ -148,7 +148,7 @@
if (!ENABLE_REGISTRATION) {
print_error(__("New user registrations are administratively disabled."));
print "<p><form method=\"GET\" action=\"logout.php\">
print "<p><form method=\"GET\" action=\"backend.php?op=logout\">
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
</form>";
return;

View File

@@ -79,7 +79,7 @@
<?php } ?>
<?php if (!SINGLE_USER_MODE) { ?>
| <a href="logout.php"><?php echo __('Logout') ?></a>
| <a href="backend.php?op=logout"><?php echo __('Logout') ?></a>
<?php } ?>
<img id="newVersionIcon" style="display:none" onclick="newVersionDlg()"