mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixing location of shared plugins folder
This commit is contained in:
parent
bb41ce8a6a
commit
495611b313
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue