Is the email field required for RedHen contacts? It seems me #1955022: No validation errors when the email field is required and left blank, it wasn't always required. I have 400+ contacts without email address. I can import these contacts width feeds module, but after that I can't modify them, while email field is required. Can you provide a switch for this feature?
/redhen/modules/redhen_fields/redhen_fields.module: 308.
<?php
// At least one email is required.
if (empty($emails)) {
$errors[$field['field_name']][$langcode][0][] = array(
'error' => 'redhen_fields_invalid_email',
'message' => t('At least one email is required.'),
'delta' => 0,
);
}
?>
Comments
Comment #1
levelos commented@bubu, we're actually working on this feature in the next week or two. Stay tuned.
Comment #2
fricike commentedI need this checkbox feature as well, same situation.
Comment #3
fricike commentedThis patch creates a checkbox on the settings page, and disables some of the email verifications. Although it does not care about other options like "Mirror RedHen Contact email to Drupal user". Please review it.
Comment #4
fricike commentedOh, and it's actually redhen_fields.
Comment #5
levelos commentedAll set. Fricike, your patch was right on, although we started working on that before I even saw it. Anyways, something very similar is committed in 13e2f8b7a45d49187d12a2b109d9a69da63b4bc5.
Comment #6
bubuToday I tested this new feature (7.x-1.x-dev; 2013-Jun-26). It's working :) @levelos, thank you for this feature!