diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-10-28 13:35:09 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-10-28 13:35:09 +0100 |
commit | 111acf180dfacf7f049d4d7b6f93b79560f51fc4 (patch) | |
tree | 0c32b1e22cdb0fca2c2cbfa0645115f405566aff | |
parent | 5578ac860793ca25eba6a33681b22e3d096d1ec7 (diff) |
Fix error in IE<8
-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 783936c56..1aa008295 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -912,7 +912,7 @@ function rcube_webmail() } if (a_cids.length) - this.http_post('mailto', { _cid: a_cids.join(','), _source: this.env.source, }, true); + this.http_post('mailto', { _cid: a_cids.join(','), _source: this.env.source }, true); else if (this.env.group) this.http_post('mailto', { _gid: this.env.group, _source: this.env.source }, true); |