diff options
author | thomascube <thomas@roundcube.net> | 2009-08-14 07:52:26 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-08-14 07:52:26 +0000 |
commit | d002607852416be04faf317f81793baacfdb6c79 (patch) | |
tree | 4d34d6e56e12cd1e2d736c4a47380f16f91e4560 /index.php | |
parent | 3c69a7a24a76ec5ecf5df91dfdc2ac18010e2694 (diff) |
Implemented logout_after plugin hook
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,7 @@ /* +-------------------------------------------------------------------------+ | RoundCube Webmail IMAP Client | - | Version 0.3-20090805 | + | Version 0.3-20090814 | | | | Copyright (C) 2005-2009, RoundCube Dev. - Switzerland | | | @@ -132,6 +132,7 @@ else if ($RCMAIL->task=='logout' && isset($_SESSION['user_id'])) { $OUTPUT->show_message('loggedout'); $RCMAIL->logout_actions(); $RCMAIL->kill_session(); + $RCMAIL->plugins->exec_hook('logout_after', array()); } // check session and auth cookie |