Honeypot generates an error on a disabled form

Created on 13 February 2025, about 2 months ago

Problem/Motivation

When a webform is disabled and honeypot protection is enabled for all webforms, a PHP error is generated when a user loads the disabled webform. This is happening. because the form has no elements in the form array but the Honeypot service is still checking to see if an array key exists within that array.

      if (!empty($form['#webform_id'])) {
        while (array_key_exists($honeypot_element, $form['elements'])) {
          $honeypot_element .= '_';
        }
      }

Steps to reproduce

- Enable Honeypot and Webform modules
- Enable Honeypot protection for all webforms
- Close a webform for further submissions
- View the webform as a user that honeypot would be enabled for

Proposed resolution

There's probably a better way to do this but for my instance, I simply added another array key check right after the hasPermission check. This resolved the issue in my environments and let honeypot load when the form was enabled and skipped it when it was disabled.

    // Don't add any protections if the user can bypass the Honeypot.
    if ($this->account->hasPermission('bypass honeypot protection')) {
      return;
    }

    // Bypass Honeypot if the form has no elements, such as a disabled form.
    // Without this check, the next array_key_exists generates an error.
    if (!array_key_exists('elements', $form)) {
      return;
    }

Remaining tasks

User interface changes

API changes

Data model changes

πŸ› Bug report
Status

Active

Version

2.2

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States johns996 Marquette, MI

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024