diff options
author | thomascube <thomas@roundcube.net> | 2010-06-01 06:32:52 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-06-01 06:32:52 +0000 |
commit | 8e32dcd9e8c05d5df2870089700848475a6fed2b (patch) | |
tree | 43905ce86631123ba1b1c0e722787f30fffeb095 /program/js/app.js | |
parent | f5bb9b433d4abf5ab69ee710894f5eb9fc3b6510 (diff) |
Fix subject column after re-arranging cols
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js index b3097b7cf..bbaa79df5 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1501,6 +1501,9 @@ function rcube_webmail() if ((found = $.inArray('flag', this.env.coltypes)) >= 0) this.set_env('flagged_col', found); + if ((found = $.inArray('subject', this.env.coltypes)) >= 0) + this.set_env('subject_col', found); + this.http_post('save-pref', { '_name':'list_cols', '_value':this.env.coltypes }); }; |