From 3b394900c9119fd6149120ebff68482ee4ba3832 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Sat, 12 Aug 2017 11:51:08 +0200 Subject: [PATCH] IcingaAppliedServiceTable: fix row rendering --- library/Director/Web/Table/IcingaAppliedServiceTable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Director/Web/Table/IcingaAppliedServiceTable.php b/library/Director/Web/Table/IcingaAppliedServiceTable.php index 9b172ab1..6a1786bd 100644 --- a/library/Director/Web/Table/IcingaAppliedServiceTable.php +++ b/library/Director/Web/Table/IcingaAppliedServiceTable.php @@ -22,9 +22,9 @@ class IcingaAppliedServiceTable extends ZfQueryBasedTable public function renderRow($row) { - return $this::row( + return $this::row([ new Link($row->service, 'director/service', ['id' => $row->id]) - ); + ]); } public function getColumnsToBeRendered()