diff options
author | alecpl <alec@alec.pl> | 2008-10-24 07:57:21 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-10-24 07:57:21 +0000 |
commit | ec01712a998b35d48be3daaf272779fdbc63cd74 (patch) | |
tree | 397846eede8b3d52e55dcc33563b0bc47b0a2913 /program/js | |
parent | d1a8d0f4c21136c9adc7efa02e3a37772bea222f (diff) |
- Added option 'identities_level', removed 'multiple_identities'
- Allow deleting identities when multiple_identities=false (#1485435)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index 6994d1893..861c3d7cf 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -288,8 +288,8 @@ function rcube_webmail() this.enable_command('preferences', 'identities', 'save', 'folders', true); if (this.env.action=='identities' || this.env.action=='edit-identity' || this.env.action=='add-identity') { - this.enable_command('add', 'delete', this.env.multiple_identities); - this.enable_command('edit', true); + this.enable_command('add', this.env.identities_level < 2); + this.enable_command('delete', 'edit', true); } if (this.env.action=='edit-identity' || this.env.action=='add-identity') |