address book language

  1. 7 years ago
    Edited 7 years ago by AlexRS

    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

  2. admin

    26 Dec 2016 Administrator Answer

    Edit contacts.php and see line 571:

    $initial = substr($row['name'],0,1);

    change it to:

    $initial = mb_substr($row['name'],0,1,'UTF-8');

    And see how it goes.

  3. Hi! After that everything works!

or Sign Up to reply!