Hi, this is probably more of a bug report but I couldn't login at open.silverstripe.org (got given a readout of python/mysql errors)
I downloaded and installed User Forms and I think it's AWESOME but I noticed that if you upload a file through a User Forms form it doesn't create a link to it when you're reviewing submissions in the CMS or reading the email that is generated - rather you can see the code for the link i.e. the email reads like this:
Uploaded file
<a href="/assets/Uploads/tacsiweb2.jpg" title="assets/Uploads/tacsiweb2.jpg">tacsiweb2</a>
I'm using SS 2.3.5 and User Forms v.0.2.1
I assume the fields are escaped automatically but after having a look through the source code I wouldn't know where to start to prevent just that field from escaping it's value when it's written to an email or in the cms. Does anyone have a quick fix?
Also - the date validation didn't seem to be working when I tried making a date field. I changed
return new TextField( $this->Name, $this->Title, $this->Default);
to
return new DateField( $this->Name, $this->Title, $this->Default);
in EditableDateField.php and it seems to work okay now.
Thanks