Re: Falscher Avatar bei Profilaufruf
Verfasst: 14.12.2009 18:52
Ich hatte bei dir einen Style getestet, irgend etwas mit Red, da kam das Problem nicht auf. Schaue mir nachher den Code nochmal an. LG Tim
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
<tr>
<td class="gen" align="{S_CONTENT_FLOW_END}" nowrap="nowrap">{L_JOINED}: </td>
<td width="100%"><b class="gen">{JOINED}</b></td>
</tr>Code: Alles auswählen
<tr>Code: Alles auswählen
<!-- IF AVATAR_IMG -->
<tr>
<td align="center">{AVATAR_IMG}</td>
</tr>
<!-- ENDIF -->Code: Alles auswählen
'AVATAR_IMG' => $poster_avatar, Code: Alles auswählen
$avatar_img = get_user_avatar($group_row['group_avatar'], $group_row['group_avatar_type'], $group_row['group_avatar_width'], $group_row['group_avatar_height'], 'GROUP_AVATAR'); Code: Alles auswählen
'AVATAR_IMG' => $avatar_img, Code: Alles auswählen
'AVATAR_IMG' => get_user_avatar($data['user_avatar'], $data['user_avatar_type'], $data['user_avatar_width'], $data['user_avatar_height']), Code: Alles auswählen
if (!function_exists('obtain_portal_config'))
{
include($phpbb_root_path . 'portal/includes/functions.' . $phpEx);
}
$portal_config = obtain_portal_config();Code: Alles auswählen
if(!defined('IN_PORTAL'))
{
include($phpbb_root_path . 'portal/includes/portalview.' . $phpEx);
}