Somewhat important security issue: Import form removes validation rules

That wouldn't really help with the issue reported at it's core, because as mentioned previously, there are times when you just won't want a validator added on the front end.

See:

The simple solution for this issue is to only add the validator on the server connect side, which works perfectly as you'd expect. But if you then reimport the form, that validator will disappear, letting someone post any kind of data since it won't be validated.

(again, you could get around that by adding it in as a validator step, but as I mentioned earlier, it's not intuitive for new users nor should it really be needed when you can just add it under the inputs)

1 Like