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:
nate 2006-12-24 19:20:45 +00:00
parent b75433ff9f
commit 46f5c22a8f

View file

@ -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
*