Fastspot / bigtree-form-builder

Form Builder Extension for BigTree 4.2+
4 stars 13 forks source link

Missing ! on date.php file #16

Closed doonmok closed 1 year ago

doonmok commented 1 year ago

The templates/routed/btx-form-builder/field-types/draw/date.php file on line 17 should be !empty not empty.

Currently if (empty($field_data["required"])) {

Should be if (!empty($field_data["required"])) {

timbuckingham commented 1 year ago

Thanks, Doon! Just pushed a fix for this to 2.6.1.

doonmok commented 1 year ago

Thank you!