mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-03-12 20:49:50 +00:00
Fixing array formatting in DboMysql
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4183 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
b75433ff9f
commit
46f5c22a8f
1 changed files with 9 additions and 7 deletions
|
@ -59,13 +59,15 @@ class DboMysql extends DboSource {
|
|||
*
|
||||
* @var array
|
||||
*/
|
||||
var $_baseConfig = array('persistent' => true,
|
||||
'host' => 'localhost',
|
||||
'login' => 'root',
|
||||
'password' => '',
|
||||
'database' => 'cake',
|
||||
'port' => '3306',
|
||||
'connect' => 'mysql_pconnect');
|
||||
var $_baseConfig = array(
|
||||
'persistent' => true,
|
||||
'host' => 'localhost',
|
||||
'login' => 'root',
|
||||
'password' => '',
|
||||
'database' => 'cake',
|
||||
'port' => '3306',
|
||||
'connect' => 'mysql_pconnect'
|
||||
);
|
||||
/**
|
||||
* MySQL column definition
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue