mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix for UpgradeShell::helpers() not discovering core helpers.
This commit is contained in:
parent
6fd69b022d
commit
1d52dc05e1
1 changed files with 3 additions and 0 deletions
|
@ -214,6 +214,9 @@ class UpgradeShell extends Shell {
|
|||
}
|
||||
|
||||
$patterns = array();
|
||||
App::build(array(
|
||||
'View/Helper' => App::core('View/Helper'),
|
||||
), App::APPEND);
|
||||
$helpers = App::objects('helper');
|
||||
$plugins = App::objects('plugin');
|
||||
$pluginHelpers = array();
|
||||
|
|
Loading…
Reference in a new issue