diff options
author | thomascube <thomas@roundcube.net> | 2008-09-05 09:41:27 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-05 09:41:27 +0000 |
commit | a6d7a9f791cb559dd1c0052f1ec709be017e6533 (patch) | |
tree | 30d7c4c6419a0f0657b2ee71f6c310aa96c2871a /program/js/app.js | |
parent | c505e59a6d2cf45233c1e0de186b8d6fe9d804ba (diff) |
Better title for export icon + include source in export url
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 3e49fc3b2..9a9865db4 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1006,9 +1006,9 @@ function rcube_webmail() case 'export': if (this.contact_list.rowcount > 0) { - var add_url = ''; + var add_url = (this.env.source ? '_source='+urlencode(this.env.source)+'&' : ''); if (this.env.search_request) - add_url = '_search='+this.env.search_request; + add_url += '_search='+this.env.search_request; this.goto_url('export', add_url); } |