We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dee4ce9 + 724f71f commit 0c0f26eCopy full SHA for 0c0f26e
modules/civicrm_engage/Engage/Report/Form/WalkList.php
@@ -461,7 +461,7 @@ function executePrintmode($rows) {
461
if (!empty($value['civicrm_contact_gender_id'])){
462
$sex = $gender[CRM_Utils_Array::value('civicrm_contact_gender_id', $value)];
463
}
464
- $sex = is_null($sex) ? '' : $sex;
+ $sex = empty($sex) ? '' : $sex;
465
$lang = strtoupper(substr($value[$this->_demoTable . '_' . $this->_demoLangCol], 0, 2
466
));
467
$party = substr($value["{$this->_voterInfoTable}_{$this->_partyCol}"], 0, 1);
0 commit comments