diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-24 18:52:50 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-24 18:52:50 +0200 |
commit | 4d1515cb0b43117792a37c03a6ca35ea3ab65eee (patch) | |
tree | c16f8db5c36d1db5e2633cd07fc24b690065bbe9 | |
parent | e8be303af3b3cb5187101e9d6f160e0aa8f07285 (diff) |
Fix javascript error on Reply-List action
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 9ca16b39c..f14f22322 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -976,7 +976,7 @@ function rcube_webmail() // do reply-list, when list is detected and popup menu wasn't used url._all = (!props && this.commands['reply-list'] ? 'list' : 'all'); else if (command == 'reply-list') - url._all = list; + url._all = 'list'; this.goto_url('compose', url, true); } |