summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-05 09:41:27 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-05 09:41:27 +0000
commit3db41c110d5a9f98675502e1ee6af9de83567f94 (patch)
treeaa74d4a0fffc03a3f38b75e72091feda6cfadd6c /roundcubemail/program/js
parent8b0d37d30f6f78b076303bb3adb7fa52f8a54dde (diff)
Better title for export icon + include source in export url
git-svn-id: https://svn.roundcube.net/trunk@1737 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
-rw-r--r--roundcubemail/program/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 3e49fc3b2..9a9865db4 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/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);
}