|
|
Administrator
|
Posts: 1104
Join Date: Mar 2005
|
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;
|