X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fpocoaddress.php;h=d9f6ff2bdefa8ea988cbb6200a30c2ffa71bd0f7;hb=a76f0676317058a8c1e2fd14ac04c7cabcbed6a7;hp=60873bdc42cd6f7e56c84d415004ea02f2131895;hpb=99454be38cf1dc7f962441d23ccc0a59e7b05f3d;p=quix0rs-gnu-social.git diff --git a/lib/pocoaddress.php b/lib/pocoaddress.php index 60873bdc42..d9f6ff2bde 100644 --- a/lib/pocoaddress.php +++ b/lib/pocoaddress.php @@ -42,15 +42,18 @@ class PoCoAddress // @todo Other address fields function asString() + { + $xs = new XMLStringer(true); + $this->outputTo($xs); + return $xs->getString(); + } + + function outputTo($xo) { if (!empty($this->formatted)) { - $xs = new XMLStringer(true); - $xs->elementStart('poco:address'); - $xs->element('poco:formatted', null, common_xml_safe_str($this->formatted)); - $xs->elementEnd('poco:address'); - return $xs->getString(); + $xo->elementStart('poco:address'); + $xo->element('poco:formatted', null, common_xml_safe_str($this->formatted)); + $xo->elementEnd('poco:address'); } - - return null; } }