Merge pull request #5974 from cakephp/issue-5838

Make global paths for vendors and plugins based on ROOT.
This commit is contained in:
José Lorenzo Rodríguez 2015-02-27 09:16:19 +01:00
commit bc4bca9737

View file

@ -874,11 +874,11 @@ class App {
), ),
'Vendor' => array( 'Vendor' => array(
'%s' . 'Vendor' . DS, '%s' . 'Vendor' . DS,
dirname(dirname(CAKE)) . DS . 'vendors' . DS, ROOT . DS . 'vendors' . DS,
), ),
'Plugin' => array( 'Plugin' => array(
APP . 'Plugin' . DS, APP . 'Plugin' . DS,
dirname(dirname(CAKE)) . DS . 'plugins' . DS ROOT . DS . 'plugins' . DS
) )
); );
} }