Fixes #3257, schema shows twice in tasks/db_cofnig.php

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5664 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2007-09-16 21:13:21 +00:00
parent a55aa374c7
commit a9bcb441e4

View file

@ -145,7 +145,7 @@ class DbConfigTask extends Shell {
function __verify($config) {
$defaults = array('name' => 'default', 'driver'=> 'mysql', 'persistent'=> 'false', 'host'=> 'localhost',
'login'=> 'root', 'password'=> 'password', 'database'=> 'project_name',
'schema'=> null,'prefix'=> null, 'schema' => null);
'schema'=> null,'prefix'=> null);
$config = am($defaults, $config);
extract($config);
$this->out('');