Issue #2761285 by MegaChriz: _drupal_session_write() does not always return a boolean

merge-requests/26/head
stefan.r 2016-07-06 17:25:45 +02:00
parent d04427f818
commit d2d2c5f3b4
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ function _drupal_session_write($sid, $value) {
try {
if (!drupal_save_session()) {
// We don't have anything to do if we are not allowed to save the session.
return;
return TRUE;
}
// Check whether $_SESSION has been changed in this request.