diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-04-07 17:01:30 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-04-07 17:01:30 +0200 |
commit | 6dc1a6645168e5e777a3db97b92d360a9e6b0c86 (patch) | |
tree | c2031248d0e3c0ad66729dcabf99ac37292e9a89 /program/js/app.js | |
parent | e8cb51669a325a3d5b60fcc37b99d494809bf837 (diff) |
Fix page title and folder selection in search mode
Diffstat (limited to 'program/js/app.js')
-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 7c27d21b3..adf135695 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -712,7 +712,7 @@ function rcube_webmail() var oldmbox = this.env.search_scope == 'all' ? '*' : this.env.mailbox; this.env.search_mods[props] = this.env.search_mods[oldmbox]; // copy search mods from active search this.env.mailbox = props; - this.env.search_scope = 'base'; + this.env.search_scope = 'sub'; this.qsearch(this.gui_objects.qsearchbox.value); this.select_folder(this.env.mailbox, '', true); break; |