mybb / merge-system

The MyBB Merge System allows for easy merging of an existing forum (be it MyBB or another forum software) into a MyBB 1.8.x forum.
Other
34 stars 33 forks source link

utf8mb4 not detected as UTF-8 #203

Closed Stefan-MyBB closed 7 years ago

Stefan-MyBB commented 7 years ago

utf8mb4 is missing here:

    switch($mysql_encoding[0])
    {
        case "utf8":
            return "utf-8";
            break;
        case "latin1":
            return "iso-8859-1";
            break;
        default:
            return $mysql_encoding[0];
    }