IcingaZone: fix erraneous parameter order

This commit is contained in:
Thomas Gelf 2015-06-08 20:40:51 +02:00
parent a9e879b72f
commit 12cbb83044

View File

@ -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');
}
}