Merge pull request #4152 from Icinga/feature/show-customvar-names-as-is-3987
Show customvar names as-is
This commit is contained in:
commit
539e88c553
|
@ -1,6 +1,6 @@
|
||||||
<?php foreach ($object->customvars as $name => $value): ?>
|
<?php foreach ($object->customvars as $name => $value): ?>
|
||||||
<tr>
|
<tr>
|
||||||
<th><?= $this->escape(ucwords(str_replace('_', ' ', strtolower($name)))) ?></th>
|
<th><?= $this->escape($name) ?></th>
|
||||||
<td class="custom-variables"><?= $this->customvar($value) ?></td>
|
<td class="custom-variables"><?= $this->customvar($value) ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
|
|
Loading…
Reference in New Issue