From cede322c1b1c78844c33faeafc9115a6e4d4042c Mon Sep 17 00:00:00 2001 From: Angie Byron <webchick@24967.no-reply.drupal.org> Date: Sat, 11 Oct 2008 16:37:38 +0000 Subject: [PATCH] #293612 by egfrith: user_authenticate() should work when is empty. --- includes/session.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/session.inc b/includes/session.inc index 99d714a0e9be..8a1b9d3c106c 100644 --- a/includes/session.inc +++ b/includes/session.inc @@ -132,7 +132,7 @@ function _sess_write($key, $value) { // the session table. This reduces memory and server load, and gives more useful // statistics. We can't eliminate anonymous session table rows without breaking // the "Who's Online" block. - if (!drupal_save_session() || (empty($_COOKIE[session_name()]) && empty($value))) { + if (!drupal_save_session() || ($user->uid == 0 && empty($_COOKIE[session_name()]) && empty($value))) { return TRUE; } -- GitLab