diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-11-10 14:04:33 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-11-10 14:04:33 +0100 |
commit | 85e60ada1558798669b29225aa530b4ba9310cdc (patch) | |
tree | 55bb42e7f13552df60c4b5de0bfda9097032103f /program/include | |
parent | e46d060a4ab4b2a901c3dd4a3909490a547284e1 (diff) |
First version of the local storage compose data saving feature; some behavioral improvements and encrytion are still to be added
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcmail.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 4b3f13760..8abe87303 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -413,6 +413,9 @@ class rcmail extends rcube $this->output->set_env('comm_path', $this->comm_path); $this->output->set_charset(RCUBE_CHARSET); + if ($this->user && $this->user->ID) + $this->output->set_env('user_id', $this->user->get_hash()); + // add some basic labels to client $this->output->add_label('loading', 'servererror', 'requesttimedout', 'refreshing'); |