mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 08:19:05 +01:00
LSattribute :: fireEvent() : Fixed notice PHP
This commit is contained in:
parent
0b442784a0
commit
cec517b46d
1 changed files with 2 additions and 2 deletions
|
@ -646,7 +646,7 @@ class LSattribute {
|
|||
}
|
||||
}
|
||||
|
||||
if (is_array($this -> _events[$event])) {
|
||||
if (isset($this -> _events[$event]) && is_array($this -> _events[$event])) {
|
||||
foreach ($this -> _events[$event] as $e) {
|
||||
if ($e['class']) {
|
||||
if (class_exists($e['class'])) {
|
||||
|
@ -688,7 +688,7 @@ class LSattribute {
|
|||
}
|
||||
}
|
||||
|
||||
if (is_array($this -> _objectEvents[$event])) {
|
||||
if (isset($this -> _objectEvents[$event]) && is_array($this -> _objectEvents[$event])) {
|
||||
foreach ($this -> _objectEvents[$event] as $e) {
|
||||
if (method_exists($e['obj'],$e['meth'])) {
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue