mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-04-20 20:13:40 +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;
|
||||
}
|
||||
|
||||
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());
|
||||
|
|
Loading…
Add table
Reference in a new issue