-
-
Notifications
You must be signed in to change notification settings - Fork 825
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CiviMail - Fix “Missing parameters” error in unsubscribe confirmation #17081
Conversation
(Standard links)
|
bb3bf85
to
b2ca42a
Compare
Possible fix for https://civicrm.stackexchange.com/questions/35323/missing-parameters-error-in-unsubscribe-confirmation The theory is that not having committed the transaction is causing the session not to be saved
b2ca42a
to
db93297
Compare
@pradpnayak I saw your SE comment - have you tested this? Just trying to figure out if it can hit the release window |
Just tested this and confirmed the mailing unsub page is submitted without any errors. Before - After - Thanks @eileenmcnaughton |
Merging as per review from @jitendrapurohit |
Note: I'm still seeing the error that this was supposed to fix, having applied the patch to 5.24.3. Not all the time, and annoyingly not when I test it! But seeing quite a few errors. of type described here: I've opened an issue here: |
@artfulrobot is it permission dependent? |
I've tested anonymously (using same link the person used for whom it crashed) - it works for me! |
Overview
Fix issue with form values not being available on submit
Possible fix for https://civicrm.stackexchange.com/questions/35323/missing-parameters-error-in-unsubscribe-confirmation
Before
Per https://civicrm.stackexchange.com/questions/35323/missing-parameters-error-in-unsubscribe-confirmation
After
Submit works
Technical Details
The theory is that not having committed the transaction is causing the session not to be saved
Comments