diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-03-25 09:07:29 +0100 |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2013-04-04 21:05:25 +0200 |
commit | bd723e565dfbbbb06fa5b15e138a4d51e7cdea10 (patch) | |
tree | 0e40435ca064eb827b7957d3442dedbeab9c3a26 /program/lib/Roundcube | |
parent | 8d7f8c8c795be695c190f5c20310567c5b2ce3f5 (diff) |
Fix typo
Diffstat (limited to 'program/lib/Roundcube')
-rw-r--r-- | program/lib/Roundcube/rcube_session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_session.php b/program/lib/Roundcube/rcube_session.php index 4282c0cbb..059cc1112 100644 --- a/program/lib/Roundcube/rcube_session.php +++ b/program/lib/Roundcube/rcube_session.php @@ -419,7 +419,7 @@ class rcube_session $this->unsets[] = $var; if (isset($_SESSION[$var])) { - unset($_SESSION[$var]) + unset($_SESSION[$var]); } else { $path = explode('.', $var); |