remove usage of iconv
This commit is contained in:
parent
eae6ff887c
commit
6f97c1efcc
@ -52,7 +52,7 @@ class SetupController extends Controller
|
|||||||
try {
|
try {
|
||||||
$manager->connection('temp')->getPdo();
|
$manager->connection('temp')->getPdo();
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
$msg = iconv('gbk', 'utf-8', $e->getMessage());
|
$msg = $e->getMessage();
|
||||||
$type = Arr::get([
|
$type = Arr::get([
|
||||||
'mysql' => 'MySQL/MariaDB',
|
'mysql' => 'MySQL/MariaDB',
|
||||||
'sqlite' => 'SQLite',
|
'sqlite' => 'SQLite',
|
||||||
|
Loading…
Reference in New Issue
Block a user