From 1d0b469daca72d4f4823cc78c38f9cbc998a0d02 Mon Sep 17 00:00:00 2001 From: james Date: Fri, 12 Feb 2010 19:00:25 +0000 Subject: [PATCH] If the username field isnt shown, then we always need to set the username to the email address when saved --- user_personal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_personal.php b/user_personal.php index ac01d9df..20a677f3 100644 --- a/user_personal.php +++ b/user_personal.php @@ -129,7 +129,7 @@ case 'save': } } - if(!array_key_exists('username', $u) || $u['username'] == '') { + if(!$fields['username'] || !array_key_exists('username', $u) || $u['username'] == '') { $u['username'] = $u['email']; }