diff options
| author | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-01-16 23:19:44 +0000 |
|---|---|---|
| committer | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-01-16 23:19:44 +0000 |
| commit | 6bac58342f8c91f8bc1e44710dce7df98227d2e0 (patch) | |
| tree | f3a1008a799303756eb5f952d29ea80675b27538 /roundcubemail/program | |
| parent | 7b9c6cd717cd2cff1dca93b439b57c766af8c581 (diff) | |
Added charset conversion in rcube_remote_response()
git-svn-id: https://svn.roundcube.net/trunk@109 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -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 ab11911b2..307a880fb 100644 --- a/roundcubemail/program/include/main.inc +++ b/roundcubemail/program/include/main.inc @@ -629,7 +629,7 @@ function rcube_remote_response($js_code, $flush=FALSE) } // send response code - print $js_code; + print rcube_charset_convert($js_code, 'UTF-8', $GLOBALS['CHARSET']); if ($flush) // flush the output buffer flush(); |
