mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixing deprecation notices for php5.3
This commit is contained in:
parent
f078517002
commit
c08153e1bd
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ class ShellDispatcher {
|
|||
}
|
||||
|
||||
foreach ($pluginPaths as $pluginPath) {
|
||||
$Folder =& new Folder($pluginPath);
|
||||
$Folder = new Folder($pluginPath);
|
||||
list($plugins,) = $Folder->read(false, true);
|
||||
foreach ((array)$plugins as $plugin) {
|
||||
$path = $pluginPath . Inflector::underscore($plugin) . DS . 'vendors' . DS . 'shells' . DS;
|
||||
|
|
Loading…
Reference in a new issue