Make functions public

This commit is contained in:
Mark Schouten 2016-08-03 14:21:01 +02:00
parent a7d3e6e6eb
commit d5ef95e711

View file

@ -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());