mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-12-18 22:43:47 +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) {
|
foreach ($this -> _events[$event] as $e) {
|
||||||
if ($e['class']) {
|
if ($e['class']) {
|
||||||
if (class_exists($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) {
|
foreach ($this -> _objectEvents[$event] as $e) {
|
||||||
if (method_exists($e['obj'],$e['meth'])) {
|
if (method_exists($e['obj'],$e['meth'])) {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue