diff options
author | Sarven Capadisli <csarven@status.net> | 2010-01-14 01:50:21 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2010-01-14 01:50:21 +0000 |
commit | 085406ea88efd4caaad3933871554dd30a23eba6 (patch) | |
tree | 78828e20ad893a84060090395b06e365e7123467 /lib/util.php | |
parent | acc48289e5f87e879e6a1182b43e405016e675d6 (diff) | |
parent | fba840ed568222b082dbac81cd8e38217d53a7ec (diff) |
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'lib/util.php')
-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); |