From ce76d61957b22a70214d953f9580db61d09c5a66 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 27 Jun 2009 05:07:14 -0700 Subject: marker in sessions --- lib/util.php | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'lib/util.php') diff --git a/lib/util.php b/lib/util.php index f6d50b180..e5a8eaea0 100644 --- a/lib/util.php +++ b/lib/util.php @@ -139,8 +139,19 @@ function common_have_session() function common_ensure_session() { + $c = null; + if (array_key_exists(session_name, $_COOKIE)) { + $c = $_COOKIE[session_name()]; + } if (!common_have_session()) { @session_start(); + if (!isset($_SESSION['started'])) { + $_SESSION['started'] = time(); + if (!empty($c)) { + common_log(LOG_WARNING, 'Session cookie "' . $_COOKIE[session_name()] . '" ' . + ' is set but started value is null'); + } + } } } -- cgit v1.2.3-54-g00ecf