diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-16 06:17:32 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-16 06:17:32 +0000 |
| commit | 924f84892a5e8edf46a09730fc5afb7189adbffa (patch) | |
| tree | e11dde5dcb6ce9516d119e6205c62a3164f5e9ae | |
| parent | 3922e83a428e138544391060ad098173de56f266 (diff) | |
- Fix typo in set_charset() (#1484991)
git-svn-id: https://svn.roundcube.net/trunk@1311 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/CHANGELOG | 4 | ||||
| -rw-r--r-- | roundcubemail/program/include/rcube_imap.php | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index 02d8a119f..0e7331c64 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -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/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php index 04bb7bfc3..0bed0e252 100644 --- a/roundcubemail/program/include/rcube_imap.php +++ b/roundcubemail/program/include/rcube_imap.php @@ -214,7 +214,7 @@ class rcube_imap */ function set_charset($cs) { - $this->default_charset = $ch; + $this->default_charset = $cs; } |
