diff options
author | alecpl <alec@alec.pl> | 2010-06-28 17:36:26 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-06-28 17:36:26 +0000 |
commit | bdb13a51f735623146f1ac81d9323e5182f99511 (patch) | |
tree | 69edc31327831d2028cb827a15748f1c0b4a5ef1 /program/js/app.js | |
parent | 60527660ee5e78df7ac4ee8e37a8ba6fdab22128 (diff) |
- Fix RC forgets search results (#1483883)
Diffstat (limited to 'program/js/app.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 d0b3bd0ca..4c0e1841f 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -487,7 +487,7 @@ function rcube_webmail() // misc list commands case 'list': if (this.task=='mail') { - if (this.env.search_request<0 || (props != '' && (this.env.search_request && props != this.env.mailbox))) + if (!this.env.search_request || (props && props != this.env.mailbox)) this.reset_qsearch(); this.list_mailbox(props); @@ -496,7 +496,7 @@ function rcube_webmail() this.set_alttext('delete', this.env.mailbox != this.env.trash_mailbox ? 'movemessagetotrash' : 'deletemessage'); } else if (this.task=='addressbook') { - if (this.env.search_request<0 || (this.env.search_request && props != this.env.source)) + if (!this.env.search_request || (props != this.env.source)) this.reset_qsearch(); this.list_contacts(props); |