-
Notifications
You must be signed in to change notification settings - Fork 2
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
Inconsistent form action attributes #3
Comments
Looks like Drupal core issue Stop using getMasterRequest() to build $form['#action'] is the likely culprit for this. The latest patch in that issue wouldn't apply for me. Next step is to fix the patch and test. |
Stop using getMasterRequest() to build $form['#action'] does appear to fix the problem with inconsistent There still appears to be a different problem with authentication in general: logging in via one browser resulted in my being logged in automatically when using another browser which should have caused an anonymous visit. |
Resolved with the patch in the Drupal core issue mentioned above. |
Possibly a cause of #1 (Authentication doesn't work).
I've noticed that the
action
attribute of HTML forms varies, and often has bizarre values (such as "/favicon.ico").The only thing I can imagine causing this is some sort of caching that's not blending requests together.
Update: Looks like Drupal core issue Stop using getMasterRequest() to build $form['#action'] is the likely culprit for this.
Remaining tasks
Fix the patch and test.
The text was updated successfully, but these errors were encountered: