Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
5.2.0
-
None
Description
In cases where a form exists but the Form component is not used a visible text box appears after submitting the form.
I think the code below:
this.submitHidden = new Element("input", {
type : "input",
name : "t:submit"
});
should be changed to:
this.submitHidden = new Element("input", {
type: "hidden",
name : "t:submit"
});
Thanks