From 82d595551c47f24bd234150e36bf243173d755c6 Mon Sep 17 00:00:00 2001 From: the_undefined Date: Tue, 13 May 2008 02:38:41 +0000 Subject: [PATCH] Fixed typo in DbConfig task, closes #4618 git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6829 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 faf8f47be..e2132e38e 100644 --- a/cake/console/libs/tasks/db_config.php +++ b/cake/console/libs/tasks/db_config.php @@ -174,7 +174,7 @@ class DbConfigTask extends Shell { } $schema = ''; - if ($driver == 'postrges') { + if ($driver == 'postgres') { while ($schema == '') { $schema = $this->in('Table schema?', null, 'n'); }