Removed $ from model task. Closes #5216.

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7441 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
mark_story 2008-08-07 17:06:03 +00:00
parent b3395569cf
commit 1d94d3ccfd

View file

@ -566,7 +566,7 @@ class ModelTask extends Shell {
$out .= "\n"; $out .= "\n";
if (!empty($associations)) { if (!empty($associations)) {
if (!empty($associations['belongsTo']) || !empty($associations['$hasOne']) || !empty($associations['hasMany']) || !empty($associations['hasAndBelongsToMany'])) { if (!empty($associations['belongsTo']) || !empty($associations['hasOne']) || !empty($associations['hasMany']) || !empty($associations['hasAndBelongsToMany'])) {
$out.= "\t//The Associations below have been created with all possible keys, those that are not needed can be removed\n"; $out.= "\t//The Associations below have been created with all possible keys, those that are not needed can be removed\n";
} }