From 25b1bfa1c2ac0aae11e30b9803725c04f0dc7c06 Mon Sep 17 00:00:00 2001 From: gwoo Date: Sun, 15 Oct 2006 08:33:23 +0000 Subject: [PATCH] fix for custom model table in bake 1.2 git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3684 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/scripts/bake.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/scripts/bake.php b/cake/scripts/bake.php index 6d3a63975..b45a67bac 100644 --- a/cake/scripts/bake.php +++ b/cake/scripts/bake.php @@ -421,7 +421,7 @@ class Bake { } if (strtolower($tableIsGood) == 'n' || strtolower($tableIsGood) == 'no') { - $table = $this->getInput('What is the name of the table (enter "null" to use NO table)?'); + $currentTableName = $this->getInput('What is the name of the table (enter "null" to use NO table)?'); }