Prevent search inputs to partecipate to wrapper form #16
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix-form-partecipation"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When codemirror is used to edit a field that is part of a form, activating the search functionality will make panel inputs to partecipate to the form. This can lead to problems when the form uses security checks such as CSRF tokens and only certain fields are allowed. In some borderline cases, when there are other inputs with
name="search"orname="replace"it might override the values previously entered.Setting the
form="", those input will be ignored by form submission.Thanks!