toggle menu
FOP2 Forum
Categories
Discussions
Sign In
·
Register
Sign In
·
Register
Categories
Discussions
Sign In
·
Register
×
Home
›
Support
address book language
AlexRS
December 2016
in
Support
Hi! this is my address book, there is '?' instead of the group letters, names showed correctly. Please help to solve this issue
PS. If this is not easy, the solution is to comment 'group' letter. Please show me what to comment for this
Comments
nicolas
December 2016
Edit contacts.php and see line 571:
$initial = substr($row,0,1);
change it to:
$initial = mb_substr($row,0,1,'UTF-8');
And see how it goes.
AlexRS
December 2016
Hi! After that everything works!
Sign In
or
Register
to comment.
Comments
$initial = substr($row,0,1);
change it to:
$initial = mb_substr($row,0,1,'UTF-8');
And see how it goes.