Hi! We begin to use egw on russian language
Problem: in workflow -> process -> roles -> users/groups
I see name users/groups such as ??? ??? 1.png (71 KB)
In displaylist I see users/groups in russian correctly
I search reflection incorrect charset in workflow/inc/class.ui_adminroles.inc.php
foreach ($users as $user)
{
$this->t->set_var(array(
'account_id' => 'u'.$user['account_id'],
'account_name' => $user['account_firstname'] . ' ' . $user['account_lastname'],
));
$this->t->parse('select_users', 'block_select_users', true);
}
What can I do to reflect users/groups in this place correct?
Help, please.