aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-05-12 17:04:03 -0700
committerfriendica <info@friendica.com>2014-05-12 17:04:03 -0700
commitb3cc05c41dd11e245d262ede40b1ba8635953fb9 (patch)
tree8ea32fd3b4c86a343fce53cb493a488840af625f /include
parent6f78d4785cd767dbc37ce9c750df05264f5a32dc (diff)
downloadvolse-hubzilla-b3cc05c41dd11e245d262ede40b1ba8635953fb9.tar.gz
volse-hubzilla-b3cc05c41dd11e245d262ede40b1ba8635953fb9.tar.bz2
volse-hubzilla-b3cc05c41dd11e245d262ede40b1ba8635953fb9.zip
try to fix random logouts
Diffstat (limited to 'include')
-rw-r--r--include/session.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/session.php b/include/session.php
index be1ec5ee7..b531688e2 100644
--- a/include/session.php
+++ b/include/session.php
@@ -11,7 +11,11 @@ $session_expire = 180000;
function new_cookie($time) {
$old_sid = session_id();
- session_set_cookie_params("$time");
+
+// ??? This shouldn't have any effect if called after session_start()
+// We probably need to set the session expiration and change the PHPSESSID cookie.
+
+ session_set_cookie_params($time);
session_regenerate_id(false);
q("UPDATE session SET sid = '%s' WHERE sid = '%s'", dbesc(session_id()), dbesc($old_sid));