Webform revisions submodule causes fatal errors for some common webform operations

Created on 14 February 2023, about 2 years ago
Updated 28 March 2023, about 2 years ago

Problem/Motivation

I'm kind of between major and critical for this as it can cause fatal errors when submitting webforms, but I haven't noticed this on my fresh install, only on an existing site. So it may be something particular to my configuration.

It definitely happens on a fresh install when viewing webform results, but this will only affect a small subset of users for most sites.

Steps to reproduce

  1. Install a fresh Drupal 9 site
  2. Ensure you have at least one webform - the default contact form should be fine
  3. Install and enable webform and the webform_revisions submodule of this module
  4. Add a revision to your webform
  5. Submit your webform. You may encounter the error at this point or it may submit successfully. It doesn't seem to happen for all forms and didn't happen for me with the steps listed here - not sure what conditions are required for it to break here.
  6. Go to the results tab for your webform
  7. You should see a fatal error: Error: Call to undefined method Drupal\webform\Plugin\WebformElementManager::resetPluginInstances() in Drupal\webform_revisions\WebformRevisionsSubmissionStorage->getColumns() (line 132 of /app/web/modules/contrib/config_entity_revisions/modules/webform_revisions/src/WebformRevisionsSubmissionStorage.php)

Proposed resolution

This is happening because Drupal\webform_revisions\Entity\WebformRevisionsSubmission is trying to treat the webform_revision field on webform submissions as an integer ID when it is actually an entity reference field item. So when it tries to pass it as an array key it causes a fatal error. The webform_revisions module itself defines this field as an entity reference. This could probably be resolved by either switching the field to an integer or by treating the field as an entity reference when using it. The latter seems safer, I'll attach a patch for that shortly.

🐛 Bug report
Status

Fixed

Version

2.0

Component

Code

Created by

🇨🇦Canada dylan donkersgoed London, Ontario

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

Comments & Activities

Production build 0.71.5 2024