diff options
author | alecpl <alec@alec.pl> | 2008-04-16 06:17:32 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-04-16 06:17:32 +0000 |
commit | f94a801d038fbc5278a32cbde7c1cfffb6f3779c (patch) | |
tree | 2da48e3a59f035be999c71b6d6b81088b7a52b3a | |
parent | 8e5defd55f02cfd5f438cfdee823221bb3e8ed45 (diff) |
- Fix typo in set_charset() (#1484991)
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | program/include/rcube_imap.php | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,10 @@ CHANGELOG RoundCube Webmail --------------------------- +2008/04/16 (alec) +---------- +- Fix typo in set_charset() (#1484991) + 2008/04/15 (estadtherr) ---------- - HTML editing is now working with PHP5 updates and TinyMCE v3.0.6 diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 04bb7bfc3..0bed0e252 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -214,7 +214,7 @@ class rcube_imap */ function set_charset($cs) { - $this->default_charset = $ch; + $this->default_charset = $cs; } |