diff --git a/developer/register.php b/developer/register.php index 50c8049..4c89eb0 100644 --- a/developer/register.php +++ b/developer/register.php @@ -71,6 +71,8 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') { $error = '用户名、邮箱和密码不能为空'; } elseif (empty($_POST['agree'])) { $error = '必须同意 APP 审核标准才能注册'; + } elseif (empty($_POST['agree_privacy'])) { + $error = '必须同意隐私政策才能注册'; } elseif (!filter_var($email, FILTER_VALIDATE_EMAIL)) { $error = '请输入有效的邮箱地址'; } else { @@ -213,6 +215,12 @@ $mail->AuthType = 'PLAIN'; // 尝试使用PLAIN认证方式 +
+ + +
diff --git a/docs/app_review_standards.php b/docs/app_review_standards.php index 67f2b3c..de28a9d 100644 --- a/docs/app_review_standards.php +++ b/docs/app_review_standards.php @@ -47,7 +47,7 @@