Skip to content
Snippets Groups Projects
Commit 9c50162e authored by Frank Naegler's avatar Frank Naegler Committed by Christian Kuhn
Browse files

[BUGFIX] Prevent sending empty forms in FormEngine

In some cases the FormEngine forms are send to the server with empty values.
Please see the issue for more details and testing instructions.

Resolves: #80633
Releases: master
Change-Id: I22ff7365e3dcb85bf6c3bc177f6cde674306ce6c
Reviewed-on: https://review.typo3.org/52315


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 9d5dfbb8
Branches
Tags
No related merge requests found
......@@ -188,7 +188,7 @@ var TBE_EDITOR = {
// TODO: This should be solved in a better way when this script is refactored.
window.setTimeout(function() {
document.getElementsByName(TBE_EDITOR.formname).item(0).submit();
}, 10);
}, 100);
},
split: function(theStr1, delim, index) {
var theStr = ""+theStr1;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment