Issue #2761285 by MegaChriz: _drupal_session_write() does not always return a boolean
parent
d04427f818
commit
d2d2c5f3b4
|
@ -163,7 +163,7 @@ function _drupal_session_write($sid, $value) {
|
||||||
try {
|
try {
|
||||||
if (!drupal_save_session()) {
|
if (!drupal_save_session()) {
|
||||||
// We don't have anything to do if we are not allowed to save the 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.
|
// Check whether $_SESSION has been changed in this request.
|
||||||
|
|
Loading…
Reference in New Issue