diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-05-15 17:45:22 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-05-15 17:45:22 +0200 |
commit | eb62a816fba72e54361a1407d962082443d4b041 (patch) | |
tree | ae2ebd0a03dbdb898b44c4606a3e189cf80430ca /program/js | |
parent | 072f1aa97b0452f48c46e6a28ed8394d709c2faa (diff) | |
parent | 482c45831440c4d72097aef682fff4b689607ae1 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
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 9aa0942f1..21595570a 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -4225,7 +4225,7 @@ function rcube_webmail() }; // build URL params for search - this.search_params = function(search, filter, smods) + this.search_params = function(search, filter) { var n, url = {}, mods_arr = [], mods = this.env.search_mods, @@ -4244,7 +4244,7 @@ function rcube_webmail() if (search) { url._q = search; - if (!smods && mods && this.message_list) + if (mods && this.message_list) mods = mods[mbox] || mods['*']; if (mods) { |