From a9e879b72ff78de86915948f7d53b145369b26ed Mon Sep 17 00:00:00 2001 From: Alexander Fuhr Date: Mon, 8 Jun 2015 15:28:56 +0200 Subject: [PATCH] IcingaZone: Fix missing semicolon --- library/Director/Objects/IcingaZone.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Director/Objects/IcingaZone.php b/library/Director/Objects/IcingaZone.php index 6f40f912..5effa66b 100644 --- a/library/Director/Objects/IcingaZone.php +++ b/library/Director/Objects/IcingaZone.php @@ -15,6 +15,6 @@ class IcingaZone extends IcingaObject protected function renderParent_zone_id() { - return $this->renderZoneProperty('parent_zone', $this->parent_zone_id) + return $this->renderZoneProperty('parent_zone', $this->parent_zone_id); } }