diff --git a/cake/console/libs/tasks/db_config.php b/cake/console/libs/tasks/db_config.php index 266415e0b..f8f8e01da 100644 --- a/cake/console/libs/tasks/db_config.php +++ b/cake/console/libs/tasks/db_config.php @@ -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('');