PHP Warning: Undefined array key "joined_profile"
@Alex T⚜️ @LeonidS
PHP Warning: Undefined array key "joined_profile" in .../modules/boonex/organizations/classes/BxOrgsSearchResult.php on line 106.
Is the following the correct fix for BxOrgsSearchResult.php?
case 'joined_entries':
$iJoinedProfileId = $aParams['joined_profile'] ?? null;
$oJoinedProfile = $iJoinedProfileId ? BxDolProfile::getInstance((int)$iJoinedProfileId) : null;
if (!$oJoinedProfile) {
$this->isError = true;
break;
}
-
-
·
Alex T⚜️
- ·
@ClickandShare.NET your fix if correct, thank you for reporting and proposed fix, you can also apply fix from this ticket - https://github.com/unacms/UNA/issues/5131
-
·
Alex T⚜️