address book language

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

  • 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.
  • Hi! After that everything works!
Sign In or Register to comment.