mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
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:
parent
a55aa374c7
commit
a9bcb441e4
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ class DbConfigTask extends Shell {
|
||||||
function __verify($config) {
|
function __verify($config) {
|
||||||
$defaults = array('name' => 'default', 'driver'=> 'mysql', 'persistent'=> 'false', 'host'=> 'localhost',
|
$defaults = array('name' => 'default', 'driver'=> 'mysql', 'persistent'=> 'false', 'host'=> 'localhost',
|
||||||
'login'=> 'root', 'password'=> 'password', 'database'=> 'project_name',
|
'login'=> 'root', 'password'=> 'password', 'database'=> 'project_name',
|
||||||
'schema'=> null,'prefix'=> null, 'schema' => null);
|
'schema'=> null,'prefix'=> null);
|
||||||
$config = am($defaults, $config);
|
$config = am($defaults, $config);
|
||||||
extract($config);
|
extract($config);
|
||||||
$this->out('');
|
$this->out('');
|
||||||
|
|
Loading…
Add table
Reference in a new issue