From 76a6bad6b5015a0b25c0739ac86b7ca0e0620be6 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 28 Sep 2011 20:49:24 -0700 Subject: Force users to give an email address when they create an account. --- src/views/pages/users/new.html.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/views/pages/users/new.html.php') diff --git a/src/views/pages/users/new.html.php b/src/views/pages/users/new.html.php index 62a0f09..8b6bdf8 100644 --- a/src/views/pages/users/new.html.php +++ b/src/views/pages/users/new.html.php @@ -28,6 +28,12 @@ if (in_array('no pw', $VARS['errors'])) { $password = ''; } $t->inputNewPassword('auth_password','Password', $password); + +if (in_array('no email', $VARS['errors'])) { + $t->inputP("You must provide an email address.", true); +} +$t->inputText('user_email', 'Email Address', + 'This is so that we can contact you. (duh).', $VARS['email']); $t->closeFieldset(); foreach ($VARS['antispam_html'] as $html) { -- cgit v1.2.3