diff options
-rw-r--r-- | engine/lib/sessions.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/engine/lib/sessions.php b/engine/lib/sessions.php index 5edf374b0..f6758425a 100644 --- a/engine/lib/sessions.php +++ b/engine/lib/sessions.php @@ -92,6 +92,20 @@ class ElggSession implements ArrayAccess { return true; } } + + + // Alias functions + function get($key) { + return $this->offsetGet($key); + } + + function set($key, $value) { + return $this->offsetSet($key, $value); + } + + function del($key) { + return $this->offsetUnset($key); + } } |