diff options
author | redmatrix <git@macgirvin.com> | 2016-05-16 17:07:39 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-16 17:07:39 -0700 |
commit | 2dcedd69519a40ca0f40bf7b8b86423e98c778c9 (patch) | |
tree | f1b7073db839da520319de458d7dc9280163aa62 /include/api.php | |
parent | c8322e89c66703f111b40f8bc321d5ab32299da1 (diff) | |
download | volse-hubzilla-2dcedd69519a40ca0f40bf7b8b86423e98c778c9.tar.gz volse-hubzilla-2dcedd69519a40ca0f40bf7b8b86423e98c778c9.tar.bz2 volse-hubzilla-2dcedd69519a40ca0f40bf7b8b86423e98c778c9.zip |
more work on sessions and cookies, as some anomalies appeared in caldav and firefox which suggested deeper issues
Diffstat (limited to 'include/api.php')
-rw-r--r-- | include/api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/api.php b/include/api.php index 3b2c71923..5f4d4bedb 100644 --- a/include/api.php +++ b/include/api.php @@ -486,7 +486,7 @@ require_once('include/api_auth.php'); function api_account_logout(&$a, $type){ require_once('include/auth.php'); - \Zotlabs\Web\Session::nuke(); + App::$session->nuke(); return api_apply_template("user", $type, array('$user' => null)); } |