diff options
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/sessions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/sessions.php b/engine/lib/sessions.php index dee5cd4a9..b7d0ce90f 100644 --- a/engine/lib/sessions.php +++ b/engine/lib/sessions.php @@ -52,7 +52,7 @@ ElggSession::$__localcache = array(); if (isset($_SESSION[$key])) - return $_SESSION[$key]; + return $_SESSION[$key]; if (isset(ElggSession::$__localcache[$key])) return ElggSession::$__localcache[$key]; |