diff options
author | alecpl <alec@alec.pl> | 2009-10-01 07:39:02 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-10-01 07:39:02 +0000 |
commit | ef70b856a392f27ef75f38468b6d09af72bfdac4 (patch) | |
tree | 6d387800a2d68422e473d6ee880c8845c270e1cd /program/js | |
parent | cb89616e1d7117a9d9e44ffc01fa6bcec0c1cdab (diff) |
- Fix return to first page from e-mail screen (#1486105)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/js/app.js b/program/js/app.js index d6fff123b..91d0f13b4 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1629,15 +1629,15 @@ function rcube_webmail() // also send search request to get the right messages if (this.env.search_request) add_url += '&_search='+this.env.search_request; - + // set page=1 if changeing to another mailbox - if (!page) + if (!page && this.env.mailbox != mbox) { page = 1; this.env.current_page = page; this.show_contentframe(false); } - + if (mbox != this.env.mailbox || (mbox == this.env.mailbox && !page && !sort)) add_url += '&_refresh=1'; |