diff options
author | jeroenpraat <jeroenpraat@xs4all.nl> | 2016-03-14 15:46:57 +0100 |
---|---|---|
committer | jeroenpraat <jeroenpraat@xs4all.nl> | 2016-03-14 15:46:57 +0100 |
commit | b8e8517725df6924c333e0c2c7c21a2696de4f25 (patch) | |
tree | 16851e62950a75f043756f8d59183937831bc104 /include/auth.php | |
parent | def04549529d34c6fbe9c7a2396dad7909859953 (diff) | |
parent | 2f5862713e2fb959134c2de23ca4ef9907912030 (diff) | |
download | volse-hubzilla-b8e8517725df6924c333e0c2c7c21a2696de4f25.tar.gz volse-hubzilla-b8e8517725df6924c333e0c2c7c21a2696de4f25.tar.bz2 volse-hubzilla-b8e8517725df6924c333e0c2c7c21a2696de4f25.zip |
Merge branch 'master' of https://github.com/redmatrix/hubzilla
Diffstat (limited to 'include/auth.php')
-rw-r--r-- | include/auth.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/include/auth.php b/include/auth.php index 4f0c4c928..1a7110c20 100644 --- a/include/auth.php +++ b/include/auth.php @@ -12,33 +12,6 @@ require_once('include/api_auth.php'); require_once('include/security.php'); -/** - * @brief Resets the current session. - * - * @return void - */ -function nuke_session() { - new_cookie(0); // 0 means delete on browser exit - - unset($_SESSION['authenticated']); - unset($_SESSION['account_id']); - unset($_SESSION['uid']); - unset($_SESSION['visitor_id']); - unset($_SESSION['administrator']); - unset($_SESSION['cid']); - unset($_SESSION['theme']); - unset($_SESSION['mobile_theme']); - unset($_SESSION['show_mobile']); - unset($_SESSION['page_flags']); - unset($_SESSION['delegate']); - unset($_SESSION['delegate_channel']); - unset($_SESSION['my_url']); - unset($_SESSION['my_address']); - unset($_SESSION['addr']); - unset($_SESSION['return_url']); - unset($_SESSION['remote_service_class']); - unset($_SESSION['remote_hub']); -} /** * @brief Verify login credentials. |