- Issue created by @slangston
- πΊπΈUnited States tr Cascadia
This was already fixed in β¨ Conflicting name with other element(s) Needs review .
- πΊπΈUnited States tr Cascadia
Please try out the fix in that other issue, then comment in that other issue to let us know whether that fixed the problem for you.
That seems to work. Thanks to the original poster of the patch!
For those who end up here without a lot of Drupal/PHP experience, here are the steps I took:In folder:
/modules/honeypot/srcthe file:
HoneypotService.phpcomment out lines 150-154:
/*
if (!empty($form['#webform_id'])) {
while (array_key_exists($honeypot_element, $form['elements'])) {
$honeypot_element .= '_';
}
}
*/Then, after this line: (146)
$honeypot_element = $this->config->get('element_name');Insert this:
// Check if this key already exists, if it does, change the name.
if (array_key_exists($honeypot_element, $form)) {
$honeypot_element .= '_';
}Clear cache.