diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-02-05 13:10:42 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-02-05 13:10:42 +0000 |
| commit | 8dc38371f827c7ab8333318f6c08483647cc095a (patch) | |
| tree | c30804ba3045363df8cea33054c9834b6375fa33 | |
| parent | 78cf58c888326be12178848d295aa02c2b0b75c9 (diff) | |
- fix
git-svn-id: https://svn.roundcube.net/trunk@3252 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/include/main.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/main.inc b/roundcubemail/program/include/main.inc index 944cdf708..f09db8cdb 100644 --- a/roundcubemail/program/include/main.inc +++ b/roundcubemail/program/include/main.inc @@ -200,7 +200,7 @@ function rcube_charset_convert($str, $from, $to=NULL) $error = false; - $to = empty($to) ? $to = strtoupper(RCMAIL_CHARSET) : rcube_parse_charset($to); + $to = empty($to) ? strtoupper(RCMAIL_CHARSET) : rcube_parse_charset($to); $from = rcube_parse_charset($from); if ($from == $to || empty($str) || empty($from)) |
