diff options
author | thomascube <thomas@roundcube.net> | 2006-01-16 23:19:44 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-01-16 23:19:44 +0000 |
commit | 2a20b04f5ee43d5cfc9a07988871096dd41c6adf (patch) | |
tree | e326935d7996c3a53fec6fb17227821142c9f55a | |
parent | 051893f4e9ae925c1ce7eecc97b4c815ca29f8e5 (diff) |
Added charset conversion in rcube_remote_response()
-rw-r--r-- | program/include/main.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/main.inc b/program/include/main.inc index ab11911b2..307a880fb 100644 --- a/program/include/main.inc +++ b/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(); |