SEO-Board: Free, Fast and Search Engine Optimization Friendly Forum Script
»User: »Password:   Remember Me? 
SEO-Board Forum Software Community / SEO-Board / Comments and Suggestions / Profile e-mail doesn't shown to admin?
Posted:  23 Mar 2009 16:49
I found that e-mail address in user profile not shown even when I logged as admin. Is there any reason fro this? I'm sure that admin should see all user info, even if it's hidden.
__________________
Posted:  23 Mar 2009 19:55
Yes, the admin does not see the email unless he goes directly to the database. I haven't thought about it. You can patch the member.php file:
Code:

 
if ($member_email_public == 0)
$member_email = null;

to
Code:


if ($member_email_public == 0 && $user_id != 1)
$member_email = null;
Posted:  27 Mar 2009 16:30
Thanks, Hristo =)
__________________