From dfa6e140fa56b4d5e8c9398892fb8b53d091a769 Mon Sep 17 00:00:00 2001 From: dho Date: Tue, 20 Jun 2006 12:24:48 +0000 Subject: [PATCH] Added missing word git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3151 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 ef16d7eaf..8f45eea29 100644 --- a/cake/scripts/bake.php +++ b/cake/scripts/bake.php @@ -383,7 +383,7 @@ class Bake { } $modelTableName == null ? $modelTableName = $inflect->pluralize($modelName) : $modelTableName = $modelTableName; - $wannaDoAssoc = $this->getInput('Would you like define model associations (hasMany, hasOne, belongsTo, etc.)?', array('y','n'), 'y'); + $wannaDoAssoc = $this->getInput('Would you like to define model associations (hasMany, hasOne, belongsTo, etc.)?', array('y','n'), 'y'); if((strtolower($wannaDoAssoc) == 'y' || strtolower($wannaDoAssoc) == 'yes')) { $this->stdout('One moment while I try to detect any associations...');