Update table

This commit is contained in:
2026-05-05 09:47:36 +02:00
parent 62f3f95782
commit c868f40ac3
2 changed files with 6 additions and 3 deletions

View File

@@ -111,7 +111,7 @@ function go_form_handle_submission() {
if (empty($data['first_name']) || empty($data['last_name'])) {
wp_redirect($_SERVER['HTTP_REFERER'] . '?form_error=1#form'); exit;
}
if ($data['rank'] < 0 || $data['rank'] > 40) {
if ($data['rank'] < 0 || $data['rank'] > 47) {
wp_redirect($_SERVER['HTTP_REFERER'] . '?form_error=rank#form'); exit;
}
if (!empty($data['email']) && !is_email($data['email'])) {