- πΊπΈUnited States bajah1701
I'm experiencing this issue in Drupal 9.5.2 and the patch fails because there appears to be differences in the codebase at this line.
What is the recommendation for raising this same issue but for a different version of Drupal? - πΊπΈUnited States bajah1701
If this might help someone. I got this exact error message but this patch didn't work. I took @cilefen recommendation of the duplicate issue and decided to try its patch instead and voila, it works.
So while the error message may be different, the solution is the same.
- Status changed to Needs review
over 1 year ago 12:49am 9 September 2023 - last update
over 1 year ago 30,146 pass - πΊπΈUnited States jrb Raleigh-Durham Area, NC, USA
@bajah1701
I looked into the code a bit and noticed that line 238 & 255 is making use of the $identifier that isn't defined.
$identifier
is defined if$exposed
is set, and it will be in lines 238 and 255 (it's checked).@DieterHolvoet
I don't think these changes to $user_input are even really doing anything: $user_input = $form_state->getUserInput(); is not storing that array as reference and $form_state->setUserInput($user_input); is not called after doing those changes.
This is definitely true, but was an issue in the code prior to this patch being added. Looking waaaaaay back, it actually appears to have been broken in this commit from 9 years ago that changed
$form_state
from an array to an object!https://git.drupalcode.org/issue/drupal-3330100/-/commit/de5fe262f2c2371...
In it, they replaced all direct uses of
$form_state['input']
with code like$user_input = $form_state->getUserInput()
. They used$form_state->setUserInput($user_input)
afterwards most everywhere, but not here. Maybe it's not all that important since no one has noticed in 9 years, but I'd say it should be added back.*****
I don't have time right now to update the issue fork, but attached is a patch that adds
$form_state->setUserInput($user_input)
to the changes from the current MR. This fixes an issue for us where having "&price=" in an URL where price should be an array causes a the fatal error. - Status changed to Needs work
over 1 year ago 5:20pm 11 September 2023 - πΊπΈUnited States smustgrave
Have not reviewed.
But moving to NW for test cases