mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-08 16:12:43 -04:00
Fix checks for empty check source attribute
refs ##5814
This commit is contained in:
parent
ef2ac077c8
commit
d155c7a3fc
1 changed files with 1 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
<?php if (! isset($object->check_source) || ! $object->check_source) return ?>
|
||||
<?php if (! $object->check_source) return ?>
|
||||
<tr>
|
||||
<th><?= $this->translate('Check Source') ?></th>
|
||||
<td>
|
||||
|
|
|
|||
Loading…
Reference in a new issue