1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-13 20:28:44 +01:00
git-svn-id: file:///svn/phpbb/trunk@6607 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2006-11-19 14:48:00 +00:00
parent 2e250d1cd8
commit f31e170e99

View File

@ -1427,7 +1427,12 @@ class acp_database
}
$sql_data .= implode(",\n", $rows);
$sql_data .= "\n);\n\n";
$sql_data .= "\n)";
if ($db->sql_layer == 'mysql4' || $db->sql_layer == 'mysqli')
{
$sql_data .= ' CHARACTER SET `utf8` COLLATE `utf8_bin`';
}
$sql_data .= ";\n\n";
break;