diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-27 06:59:59 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-27 06:59:59 +0000 |
| commit | cef5293c480927a71e1d58c5ce97a5fece93307b (patch) | |
| tree | c1805caaa33ffd4665d6f782fa6c77710523544e /roundcubemail/program/js | |
| parent | 7a422a4859fed7e152b31d36d09043451b525132 (diff) | |
- Fix bug where when replying always the last identity is used (#1488101)
git-svn-id: https://svn.roundcube.net/trunk@5280 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
| -rw-r--r-- | roundcubemail/program/js/common.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/js/common.js b/roundcubemail/program/js/common.js index 0011feaa0..f69125bcc 100644 --- a/roundcubemail/program/js/common.js +++ b/roundcubemail/program/js/common.js @@ -617,10 +617,10 @@ function getCookie(name) return null; } else { - begin += 2; + begin += 2; } - var end = document.cookie.indexOf(";", begin); + var end = dc.indexOf(";", begin); if (end == -1) end = dc.length; |
