"Added missing path define"

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6005 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2007-11-16 18:20:52 +00:00
parent c1533a6aa6
commit f60d5bf4bc

View file

@ -478,7 +478,7 @@ class Configure extends Object {
'helper' => array_merge(array(HELPERS, APP), $paths['helper']),
'controller' => array_merge(array(CONTROLLERS, APP), $paths['controller']),
'view' => array_merge(array(VIEWS), $paths['view']),
'model' => array_merge(array(MODELS), $paths['model']));
'model' => array_merge(array(MODELS, APP), $paths['model']));
}
foreach ($basePaths as $type => $default) {