]> git.wh0rd.org - tt-rss.git/blobdiff - mobile/logout.php
sharepopup: add help text
[tt-rss.git] / mobile / logout.php
index f23fd9bb369cf0b7863dc42f72e0c087f5df4d23..46d7ec8ee7483c5926623995de091e495cf00fc1 100644 (file)
@@ -1,40 +1,7 @@
-<?
-       require_once "functions.php";
-
-       require_once "../config.php";
-       require_once "../functions.php";
-       require_once "../sessions.php";
+<?php
+       require_once "mobile-functions.php";
 
        logout_user();
 
-       if (!USE_HTTP_AUTH) {
-               $url_path = get_script_urlpath();
-
-               if (ENABLE_LOGIN_SSL) {
-                       $protocol = "https";
-               } else {
-                       $protocol = "http";
-               }               
-
-               $redirect_base = "$protocol://" . $_SERVER["SERVER_NAME"] . $url_path;
-
-               header("Location: $redirect_base/login.php");
-       } else { ?>
-       
-       <html>
-               <head>
-                       <title>Tiny Tiny RSS : Logout</title>
-                       <link rel="stylesheet" type="text/css" href="tt-rss.css">
-               <body>
-                       <h1>You have been logged out.</h1>
-
-                       <p><b>Warning:</b>
-                       As there is no way to reliably clear HTTP Authentication 
-                       credentials from your browser, it is recommended for you to close
-                       this browser window, otherwise your browser could automatically
-                       authenticate again using previously supplied credentials, which
-                       is a security risk.</p>
-                       
-       </body>
-       </html>
-<?     } ?>
+       header("Location: index.php");
+?>