diff options
author | alecpl <alec@alec.pl> | 2011-09-27 06:59:59 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-09-27 06:59:59 +0000 |
commit | 90a6aff022c62e1cbcc5b7fc4baf7b982d7f2ffe (patch) | |
tree | 47e9e908c5b38b9613c6d0b857ec04639873a580 /program/js | |
parent | 00d42426f2fcf7f3451d4f6745d7f9f79feaaeba (diff) |
- Fix bug where when replying always the last identity is used (#1488101)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/common.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/common.js b/program/js/common.js index 0011feaa0..f69125bcc 100644 --- a/program/js/common.js +++ b/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; |