Navigation Menu

Skip to content

Commit

Permalink
correcting global plugin path logic to match global vendors folder
Browse files Browse the repository at this point in the history
  • Loading branch information
AD7six authored and markstory committed Aug 12, 2009
1 parent ae628f7 commit 96cebee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cake/libs/configure.php
Expand Up @@ -632,7 +632,7 @@ function build($paths = array(), $reset = false) {
'locales' => array(APP . 'locale' . DS),
'shells' => array(APP . 'vendors' . DS . 'shells' . DS, VENDORS . 'shells' . DS),
'vendors' => array(APP . 'vendors' . DS, VENDORS),
'plugins' => array(APP . 'plugins' . DS, CAKE_CORE_INCLUDE_PATH . DS . 'plugins' . DS),
'plugins' => array(APP . 'plugins' . DS)
);

if ($reset == true) {
Expand Down Expand Up @@ -709,6 +709,7 @@ function core($type = null) {
$paths['components'][] = $libs . 'controller' . DS . 'components' . DS;
$paths['views'][] = $libs . 'view' . DS;
$paths['helpers'][] = $libs . 'view' . DS . 'helpers' . DS;
$paths['plugins'][] = $path . DS . 'plugins' . DS;
$paths['vendors'][] = $path . DS . 'vendors' . DS;
$paths['shells'][] = $cake . 'console' . DS . 'libs' . DS;
break;
Expand Down

0 comments on commit 96cebee

Please sign in to comment.