mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-04-19 20:09:14 +03:00
Make functions public
This commit is contained in:
parent
a7d3e6e6eb
commit
d5ef95e711
1 changed files with 2 additions and 2 deletions
|
@ -243,7 +243,7 @@ class RRSet {
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function export_records() {
|
public function export_records() {
|
||||||
$ret = Array();
|
$ret = Array();
|
||||||
foreach ($this->records as $record) {
|
foreach ($this->records as $record) {
|
||||||
array_push($ret, $record->export());
|
array_push($ret, $record->export());
|
||||||
|
@ -252,7 +252,7 @@ class RRSet {
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function export_comments() {
|
public function export_comments() {
|
||||||
$ret = Array();
|
$ret = Array();
|
||||||
foreach ($this->comments as $comment) {
|
foreach ($this->comments as $comment) {
|
||||||
array_push($ret, $comment->export());
|
array_push($ret, $comment->export());
|
||||||
|
|
Loading…
Add table
Reference in a new issue