You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In addCiviHandler() it will skip a webform if there are no element keys that include civicrm. But I've found some webforms where getWebformCiviCRMData() returns NULL. In each case the CiviCRM processing was turned off.
What worked for me was adding:
if (empty($webformData)) {
return;
}
The text was updated successfully, but these errors were encountered:
herbdool
added a commit
to freeform/webform_civicrm_migrate
that referenced
this issue
Apr 3, 2023
In
addCiviHandler()
it will skip a webform if there are no element keys that includecivicrm
. But I've found some webforms wheregetWebformCiviCRMData()
returnsNULL
. In each case the CiviCRM processing was turned off.What worked for me was adding:
The text was updated successfully, but these errors were encountered: