CoreApiFieldsTable: fix legacy ipl syntax

This commit is contained in:
Thomas Gelf 2018-08-10 13:35:12 +02:00
parent c5c2333da7
commit 71cc5939d3

View File

@ -3,6 +3,7 @@
namespace Icinga\Module\Director\Web\Table;
use dipl\Html\BaseHtmlElement;
use dipl\Html\Html;
use dipl\Html\Link;
use dipl\Html\Table;
use dipl\Translation\TranslationHelper;
@ -62,7 +63,7 @@ class CoreApiFieldsTable extends Table
protected function makeBooleanColumn($value)
{
return $this::td($value ? $this::strong('true') : 'false');
return $this::td($value ? Html::tag('strong', 'true') : 'false');
}
public function getColumnsToBeRendered()