From d5ef95e7119032bdcc8f473e0d83e37656b80453 Mon Sep 17 00:00:00 2001 From: Mark Schouten Date: Wed, 3 Aug 2016 14:21:01 +0200 Subject: [PATCH] Make functions public --- includes/class/Zone.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/class/Zone.php b/includes/class/Zone.php index cf4c5dc..a03419e 100644 --- a/includes/class/Zone.php +++ b/includes/class/Zone.php @@ -243,7 +243,7 @@ class RRSet { return $ret; } - private function export_records() { + public function export_records() { $ret = Array(); foreach ($this->records as $record) { array_push($ret, $record->export()); @@ -252,7 +252,7 @@ class RRSet { return $ret; } - private function export_comments() { + public function export_comments() { $ret = Array(); foreach ($this->comments as $comment) { array_push($ret, $comment->export());