diff options
author | alecpl <alec@alec.pl> | 2009-06-15 07:01:36 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-06-15 07:01:36 +0000 |
commit | 3a2b270c9d1f531c2e2d1c422a4756afd639ef47 (patch) | |
tree | 5a591df3eb514a68e2c2b25e75ab82aa4ba32575 /program/js | |
parent | 9d147c8d12d45b58afabb1b996ff974669afd98c (diff) |
- always call logout action as task (#1485919)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/program/js/app.js b/program/js/app.js index 218351ca3..216bebc80 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -367,9 +367,6 @@ function rcube_webmail() break; } - // enable basic commands - this.enable_command('logout', true); - // flag object as complete this.loaded = true; @@ -551,14 +548,11 @@ function rcube_webmail() this.gui_objects.loginform.submit(); break; - case 'logout': - this.goto_url('logout', '', true); - break; - // commands to switch task case 'mail': case 'addressbook': case 'settings': + case 'logout': this.switch_task(command); break; |