diff options
author | Evan Prodromou <evan@status.net> | 2010-01-13 16:19:20 -0800 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-13 16:19:20 -0800 |
commit | 464ce741a41297e3d711668f27be190f8dc47d81 (patch) | |
tree | 06afb906e254c232fab03c5ac70ad6434a009157 | |
parent | d018ab7b0ce907a2400d7cd2294362e4d85f4717 (diff) |
remove session info in syslog
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php index 9255b9b37..ef8a5d1f0 100644 --- a/lib/util.php +++ b/lib/util.php @@ -173,10 +173,8 @@ function common_ensure_session() } if (array_key_exists(session_name(), $_GET)) { $id = $_GET[session_name()]; - common_log(LOG_INFO, 'Setting session from GET parameter: '.$id); } else if (array_key_exists(session_name(), $_COOKIE)) { $id = $_COOKIE[session_name()]; - common_log(LOG_INFO, 'Setting session from COOKIE: '.$id); } if (isset($id)) { session_id($id); |