Skip to content

Commit

Permalink
Fixed an invalid reference to a variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah Jahn committed Feb 12, 2021
1 parent 5d92b43 commit 87eb567
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function setPostalInfo(eppContactPostalInfo $eppContactPostalInfo) {
$postalInfoElement->appendChild($this->createElement('contact:name', $eppContactPostalInfo->getName()));
}
if ($eppContactPostalInfo->getOrganisationName()) {
$postalInfoElement->appendChild($this->createElement('contact:org', $postal->getOrganisationName()));
$postalInfoElement->appendChild($this->createElement('contact:org', $eppContactPostalInfo->getOrganisationName()));
}
$addressElement = $this->createElement('contact:addr');
$count = $eppContactPostalInfo->getStreetCount();
Expand Down

0 comments on commit 87eb567

Please sign in to comment.