Skip to content

Commit

Permalink
Merge pull request #378 from nirmalrp23/bugfix/sidn-organisationName-…
Browse files Browse the repository at this point in the history
…contactType-fix

SIDN - "organizationName" being set to null in parent constructor of sidnEppContactPostalInfo as It leads to get a null organisationName value
  • Loading branch information
metaregistrar authored Apr 2, 2024
2 parents 29d2fa9 + 0c8c67c commit b4ba728
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function __construct($name = null, $city = null, $countrycode = null, $or
$this->legalForm = 'PERSOON';
}

parent::__construct($name, $city, $countrycode, null, $street, $province, $zipcode, $type);
parent::__construct($name, $city, $countrycode, $organisationName, $street, $province, $zipcode, $type);
}

public function getLegalForm() {
Expand Down

0 comments on commit b4ba728

Please sign in to comment.