From 978021097396fa3250d6d93702383fcc5505cd82 Mon Sep 17 00:00:00 2001 From: Evgeny Gryaznov Date: Thu, 21 Apr 2011 00:44:04 +0200 Subject: [PATCH] fix encoding in operators list --- src/messenger/webim/operator/update.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/messenger/webim/operator/update.php b/src/messenger/webim/operator/update.php index 066b5cc4..e6a9a3bc 100644 --- a/src/messenger/webim/operator/update.php +++ b/src/messenger/webim/operator/update.php @@ -152,6 +152,7 @@ function print_pending_threads($groupids, $since) function print_operators() { + global $webim_encoding; echo ""; $operators = operator_get_all(); @@ -159,7 +160,7 @@ function print_operators() if (!operator_is_online($operator)) continue; - $name = htmlspecialchars(htmlspecialchars($operator['vclocalename'])); + $name = myiconv($webim_encoding, "utf-8", htmlspecialchars(htmlspecialchars($operator['vclocalename']))); $away = operator_is_away($operator) ? " away=\"1\"" : ""; echo "";