From a9bcb441e4f1ad413d90dfac769e67864982c439 Mon Sep 17 00:00:00 2001 From: phpnut Date: Sun, 16 Sep 2007 21:13:21 +0000 Subject: [PATCH] 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 --- cake/console/libs/tasks/db_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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('');