Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJos Poortvliet <jospoortvliet@gmail.com>2020-09-14 21:40:00 +0300
committerJos Poortvliet <jospoortvliet@gmail.com>2020-09-14 21:40:00 +0300
commit5accb5d0c7fd9782b1625b075a5c535faaf7e621 (patch)
tree5b10bf66e0fc4aad5e076eeb7306cb7614ca3fb6 /page-trialsubmit.php
parent429a3e8470850b266f8e0deb7019d142503cfb57 (diff)
remove checks on names
Signed-off-by: Jos Poortvliet <jospoortvliet@gmail.com>
Diffstat (limited to 'page-trialsubmit.php')
-rw-r--r--page-trialsubmit.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/page-trialsubmit.php b/page-trialsubmit.php
index d3dd41f7..a7079d4c 100644
--- a/page-trialsubmit.php
+++ b/page-trialsubmit.php
@@ -68,9 +68,10 @@ if(isset($_POST['email'])) {
$error_message .= 'The email address you entered does not appear to be valid.<br />';
}
$string_exp = "/^[A-Za-z .'-]+$/";
- if(!preg_match($string_exp,$yourname)) {
- $error_message .= 'The name you entered does not appear to be valid.<br />';
- }
+// remove checking name
+// if(!preg_match($string_exp,$yourname)) {
+// $error_message .= 'The name you entered does not appear to be valid.<br />';
+// }
if(!($gdprcheck=="gdprchecked")) {
$error_message .= 'You did not agree with our privacy policy so we would not be allowed to read and reply to your inquiry.<br />';
}