mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
changing array_key_exists to isset. Refs #5161
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7601 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
869cd1fe36
commit
2b984bed94
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ class View extends Object {
|
|||
}
|
||||
$helperCn = $helper . 'Helper';
|
||||
|
||||
if (array_key_exists($helper, $loaded) !== true) {
|
||||
if (!isset($loaded[$helper])) {
|
||||
if (!class_exists($helperCn)) {
|
||||
$isLoaded = false;
|
||||
if (!is_null($plugin)) {
|
||||
|
|
Loading…
Reference in a new issue