From 87f1015262a16c1f1fc16d2dba6e4c83977c3f80 Mon Sep 17 00:00:00 2001 From: Alexander Fuhr Date: Tue, 2 Jun 2015 17:36:47 +0200 Subject: [PATCH] Endpoint: adjust table columns^:x --- application/tables/IcingaEndpointTable.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/application/tables/IcingaEndpointTable.php b/application/tables/IcingaEndpointTable.php index 0f39aa60..29e0b4a1 100644 --- a/application/tables/IcingaEndpointTable.php +++ b/application/tables/IcingaEndpointTable.php @@ -9,10 +9,10 @@ class IcingaEndpointTable extends QuickTable public function getColumns() { return array( - 'id' => 'e.id', - 'endpoint' => 'e.object_name', - 'address' => 'e.address', - 'zone' => 'z.object_name', + 'id' => 'e.id', + 'endpoint' => 'e.object_name', + 'address' => 'e.address', + 'zone' => 'z.object_name', ); } @@ -25,9 +25,9 @@ class IcingaEndpointTable extends QuickTable { $view = $this->view(); return array( - 'host' => $view->translate('Endpoint'), - 'address' => $view->translate('Address'), - 'zone' => $view->translate('Zone'), + 'endpoint' => $view->translate('Endpoint'), + 'address' => $view->translate('Address'), + 'zone' => $view->translate('Zone'), ); }