summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-01-16 23:19:44 +0000
committerthomascube <thomas@roundcube.net>2006-01-16 23:19:44 +0000
commit2a20b04f5ee43d5cfc9a07988871096dd41c6adf (patch)
treee326935d7996c3a53fec6fb17227821142c9f55a /program
parent051893f4e9ae925c1ce7eecc97b4c815ca29f8e5 (diff)
Added charset conversion in rcube_remote_response()
Diffstat (limited to 'program')
-rw-r--r--program/include/main.inc2
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();