Merging changes on bake.php from 1.1.x.x branch [3138]

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3139 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
dho 2006-06-19 15:00:17 +00:00
parent c477ab64c6
commit 6cca0d00ea

View file

@ -855,7 +855,7 @@ class Bake {
$componentsListTrimmed = str_replace(' ', '', $componentsList);
$components = explode(',', $componentsListTrimmed);
}
$wannaDoScaffolding = $this->getInput("Would to include some basic class methods (index(), add(), view(), edit())?", array('y','n'), 'n');
$wannaDoScaffolding = $this->getInput("Would you like to include some basic class methods (index(), add(), view(), edit())?", array('y','n'), 'n');
}
if (strtolower($wannaDoScaffolding) == 'y' || strtolower($wannaDoScaffolding) == 'yes') {
@ -2034,7 +2034,7 @@ class Bake {
}
return false;
}
$exceptions=array('.','..');
$exceptions=array('.','..','.svn');
$handle = opendir($fromDir);
while (false!==($item = readdir($handle))) {