Sync: fix negation lost at ca76f30
This commit is contained in:
parent
79f4aec592
commit
f0d02edbe6
|
@ -187,7 +187,7 @@ class Sync
|
|||
if ($row instanceof IcingaObject) {
|
||||
return $row->$var;
|
||||
}
|
||||
if (property_exists($row, $var)) {
|
||||
if (! property_exists($row, $var)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue