diff options
author | thomascube <thomas@roundcube.net> | 2007-08-10 13:51:53 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-08-10 13:51:53 +0000 |
commit | fc73746eb48c4b3bfad9ee04f1fb229788062ffc (patch) | |
tree | 9cb13d53c29777794f4570870281b8c296fc2efe /program/js/app.js | |
parent | b48bd06c0f0d0258777b3870f8b8f18aa8a48355 (diff) |
Fix compose function from address book + mozilla compatibility
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 78e2b1afa..48597c57d 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -2289,7 +2289,7 @@ function rcube_webmail() this.enable_command('delete', 'compose', false); // send request to server - var url = (src ? '&_source='+urlencode(src) : '') + (page ? '&_page='+page : ''); + var url = (src ? '_source='+urlencode(src) : '') + (page ? (src?'&':'') + '_page='+page : ''); this.env.source = src; // also send search request to get the right messages |