Account created on 30 April 2018, almost 7 years ago
#

Recent comments

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/src

the file:
HoneypotService.php

comment 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.

Same error in both PHP 8.2 and 8.3.

Production build 0.71.5 2024