mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-02-07 20:46:24 +00:00
Adding a socket key to DboMysqli::$baseConfig. Fixes notice errors when socket is undefined. Fixes #1482
This commit is contained in:
parent
32f0b20a33
commit
d192ed32f0
1 changed files with 2 additions and 1 deletions
|
@ -47,7 +47,8 @@ class DboMysqli extends DboMysqlBase {
|
||||||
'login' => 'root',
|
'login' => 'root',
|
||||||
'password' => '',
|
'password' => '',
|
||||||
'database' => 'cake',
|
'database' => 'cake',
|
||||||
'port' => '3306'
|
'port' => '3306',
|
||||||
|
'socket' => null
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue