Fixing location of shared plugins folder

This commit is contained in:
Jose Lorenzo Rodriguez 2011-04-22 15:14:37 -04:30
parent bb41ce8a6a
commit 495611b313

View file

@ -289,7 +289,10 @@ class App {
'%s' . 'locale' . DS
),
'vendors' => array('%s' . 'vendors' . DS, VENDORS),
'plugins' => array(APP . 'plugins' . DS, CAKE_CORE_INCLUDE_PATH . DS . 'plugins' . DS)
'plugins' => array(
APP . 'plugins' . DS,
dirname(dirname(CAKE)) . DS . 'plugins' . DS
)
);
}