summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--includes/sys_auth.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/includes/sys_auth.php b/includes/sys_auth.php
index 68cf17e4..4ca56632 100644
--- a/includes/sys_auth.php
+++ b/includes/sys_auth.php
@@ -5,15 +5,6 @@
function load_auth() {
global $user, $privileges;
- if (!isset ($_SESSION['IP']))
- $_SESSION['IP'] = $_SERVER['REMOTE_ADDR'];
-
- if ($_SESSION['IP'] != $_SERVER['REMOTE_ADDR']) {
- session_destroy();
- error("Your session has been destroyed because your ip-address changed.");
- header("Location: " . page_link_to('start'));
- }
-
$user = null;
if (isset ($_SESSION['uid'])) {
$user = sql_select("SELECT * FROM `User` WHERE `UID`=" . sql_escape($_SESSION['uid']) . " LIMIT 1");