mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Merge pull request #5974 from cakephp/issue-5838
Make global paths for vendors and plugins based on ROOT.
This commit is contained in:
commit
bc4bca9737
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue