diff options
author | msquare <msquare@notrademark.de> | 2017-11-19 11:58:19 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2017-11-19 11:58:19 +0100 |
commit | 59cd65cb506712fc3580ca3e503b445ec84ddad5 (patch) | |
tree | 0adaf96ca5f24517c276ff840e9d16f9e1715819 | |
parent | 7df64c82a69d30dfc7417fa5bff83f864a1c2314 (diff) |
fix problem with validation of planned arrival date
-rw-r--r-- | includes/pages/guest_login.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/pages/guest_login.php b/includes/pages/guest_login.php index 9d4777ed..78018375 100644 --- a/includes/pages/guest_login.php +++ b/includes/pages/guest_login.php @@ -157,6 +157,9 @@ function guest_register() $valid = false; error(_('Please enter your planned date of arrival. It should be after the buildup start date and before teardown end date.')); } + } else { + $valid = false; + error(_('Please enter your planned date of arrival. It should be after the buildup start date and before teardown end date.')); } $selected_angel_types = []; |