diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-12-01 11:06:27 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-12-01 11:06:27 +0000 |
| commit | f985a63fb581c1e09a804bf04e303a96a014909e (patch) | |
| tree | 787c7067f3eb54c95b75f41a378b4aac1475e8a5 /roundcubemail/program/include/rcube_session.php | |
| parent | 4780b43691bb43c4c6cad9ac0c56ed7ebf7cba5a (diff) | |
- Simplified compose session data handling, no need for session->cleanup()
git-svn-id: https://svn.roundcube.net/trunk@5521 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_session.php')
| -rw-r--r-- | roundcubemail/program/include/rcube_session.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/roundcubemail/program/include/rcube_session.php b/roundcubemail/program/include/rcube_session.php index 7c6097392..7b2b2dce0 100644 --- a/roundcubemail/program/include/rcube_session.php +++ b/roundcubemail/program/include/rcube_session.php @@ -325,19 +325,6 @@ class rcube_session /** - * Cleanup session data before saving - */ - public function cleanup() - { - // current compose information is stored in $_SESSION['compose'], move it to $_SESSION['compose_data_<ID>'] - if ($compose_id = $_SESSION['compose']['id']) { - $_SESSION['compose_data_'.$compose_id] = $_SESSION['compose']; - $this->remove('compose'); - } - } - - - /** * Register additional garbage collector functions * * @param mixed Callback function |
