diff --git a/Oara/Network/Publisher/AffiliNet.php b/Oara/Network/Publisher/AffiliNet.php index dd38b198..ab97b143 100755 --- a/Oara/Network/Publisher/AffiliNet.php +++ b/Oara/Network/Publisher/AffiliNet.php @@ -111,7 +111,7 @@ public function getMerchantList() $obj['name'] = $merchant->ProgramTitle; // Added more info - 2018-04-20 $obj['url'] = $merchant->Url; - $obj['status'] = $merchant->PartnershipStatus ?? null; + $obj['status'] = isset($merchant->PartnershipStatus) ? $merchant->PartnershipStatus : null; $obj['launch_date'] = $merchant->LaunchDate; $merchantListResult[] = $obj; }