E-Mail Adresse in Profil nur für eingeloggte User
Verfasst: 11.02.2007 16:01
Kann man die E-Mail Adresse nur für eingeloggte Unser sichbar machen?
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
<tr>
<td valign="middle" align="right" nowrap="nowrap"><span class="gen">{L_EMAIL_ADDRESS}:</span></td>
<td class="row1" valign="middle" width="100%"><b><span class="gen">{EMAIL_IMG}</span></b></td>
</tr>
Code: Alles auswählen
<td valign="middle" nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG}
Code: Alles auswählen
<td valign="middle" nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG}
<!-- BEGIN switch_user_logged_in -->
{postrow.EMAIL_IMG}
<!-- END switch_user_logged_in -->
{postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG}
Code: Alles auswählen
if ( !empty($postrow[$i]['user_viewemail']) || $is_auth['auth_mod'] )
Code: Alles auswählen
if (!$userdata['session_logged_in'])
{
$email_img = '<img src="' . $images['icon_email'] . '" alt="' . $lang['Send_email'] . '" title="' . $lang['Send_email'] . '" border="0" />';
$email = '';
}
else if ( !empty($postrow[$i]['user_viewemail']) || $is_auth['auth_mod'] )