- Issue created by @woldtwerk
- π³πΏNew Zealand quietone
This needs to be fixed on 11.x (our main development branch) first, and are then back ported as needed according to our policies. Also, 10.2 is in security mode now.
Drupal has build in protection of submitting forms twice.
This applies to ''submit.singleSubmit'' and "form:not([method~="GET"])".
The second means all forms which are not method GET. This would include get (because case insensitive i not used) post, dialog and a form without a method (defaults to GET).
This feature prevents you from closing dialogs twice.
<dialog>
<form method="dialog">
<button>close</button/>
</form>
</dialog>
'form:not([method~="GET" i]):not([method~="dialog" i])'
allow submitting dialog twice
also check for method="get"
Active
11.0 π₯
Last updated
Affects the content, performance, or handling of Javascript.
This needs to be fixed on 11.x (our main development branch) first, and are then back ported as needed according to our policies. Also, 10.2 is in security mode now.