summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-08-24 18:52:50 +0200
committerAleksander Machniak <alec@alec.pl>2012-08-24 18:52:50 +0200
commit4d1515cb0b43117792a37c03a6ca35ea3ab65eee (patch)
treec16f8db5c36d1db5e2633cd07fc24b690065bbe9 /program/js
parente8be303af3b3cb5187101e9d6f160e0aa8f07285 (diff)
Fix javascript error on Reply-List action
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js2
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);
}