Skip to content

Commit b4ba728

Browse files
Merge pull request #378 from nirmalrp23/bugfix/sidn-organisationName-contactType-fix
SIDN - "organizationName" being set to null in parent constructor of sidnEppContactPostalInfo as It leads to get a null organisationName value
2 parents 29d2fa9 + 0c8c67c commit b4ba728

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Protocols/EPP/eppExtensions/sidn-ext-epp-1.0/eppRequests/sidnEppContactPostalInfo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function __construct($name = null, $city = null, $countrycode = null, $or
3030
$this->legalForm = 'PERSOON';
3131
}
3232

33-
parent::__construct($name, $city, $countrycode, null, $street, $province, $zipcode, $type);
33+
parent::__construct($name, $city, $countrycode, $organisationName, $street, $province, $zipcode, $type);
3434
}
3535

3636
public function getLegalForm() {

0 commit comments

Comments
 (0)