From 12cbb83044d65c8ddb2f4e9950442a1af24a80aa Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Mon, 8 Jun 2015 20:40:51 +0200 Subject: [PATCH] IcingaZone: fix erraneous parameter order --- 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 5effa66b..345fdcf1 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($this->parent_zone_id, 'parent_zone'); } }