From 686f168ee339e679dad778cab18f474d84bb3912 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 12 Sep 2019 00:15:33 +0200 Subject: [PATCH] ObjectsTableEndpoint: merge arrays, it fails with ...with ipl --- library/Director/Web/Table/ObjectsTableEndpoint.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Director/Web/Table/ObjectsTableEndpoint.php b/library/Director/Web/Table/ObjectsTableEndpoint.php index aedc4526..e0269563 100644 --- a/library/Director/Web/Table/ObjectsTableEndpoint.php +++ b/library/Director/Web/Table/ObjectsTableEndpoint.php @@ -54,7 +54,7 @@ class ObjectsTableEndpoint extends ObjectsTable public function getRowClasses($row) { if ($row->object_name === $this->deploymentEndpoint) { - return array('deployment-endpoint', parent::getRowClasses($row)); + return array_merge(array('deployment-endpoint'), parent::getRowClasses($row)); } else { return null; }