diff options
-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; } |