From 0c8c67cb1bce4c1daf234c1275ba47189b3415fb Mon Sep 17 00:00:00 2001 From: nirmalrp23 Date: Thu, 28 Mar 2024 18:53:24 +0530 Subject: [PATCH] Update sidnEppContactPostalInfo SIDN - "organizationName" being set to null in parent constructor of sidnEppContactPostalInfo as It leads to get a null organisationName value --- .../sidn-ext-epp-1.0/eppRequests/sidnEppContactPostalInfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Protocols/EPP/eppExtensions/sidn-ext-epp-1.0/eppRequests/sidnEppContactPostalInfo.php b/Protocols/EPP/eppExtensions/sidn-ext-epp-1.0/eppRequests/sidnEppContactPostalInfo.php index 58d1acb3..af748ae0 100644 --- a/Protocols/EPP/eppExtensions/sidn-ext-epp-1.0/eppRequests/sidnEppContactPostalInfo.php +++ b/Protocols/EPP/eppExtensions/sidn-ext-epp-1.0/eppRequests/sidnEppContactPostalInfo.php @@ -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() {