F
fariyeld
Гость
Да не показывает аватар. Еще от чего может быть?
'AUTHOR_AVA' => $avatar_img,
'TOPIC_AUTHOR' => profile_url(array('username' => str_short($topic['first_username'], 15), 'user_id' => $topic['first_user_id'], 'user_rank' => $topic['first_user_rank'])),
Не вижу разницы.Вывод же в tpl.T_O_M, спасибо тебе теперь вот показывает. Но думаювставить передPHP:'AUTHOR_AVA' => $avatar_img,
так будет красивее.PHP:'TOPIC_AUTHOR' => profile_url(array('username' => str_short($topic['first_username'], 15), 'user_id' => $topic['first_user_id'], 'user_rank' => $topic['first_user_rank'])),
// Ава топикстартера
$avatar_img = '<img align="left" height="36" width="36" style="padding-right: 3px;" src="' . $bb_cfg['none_avatar_image'] . '" alt="" border="0" />';
if ($topic['author_ava_type'] )
{
switch($topic['author_ava_type'] )
{
case USER_AVATAR_UPLOAD:
$avatar_img = ( $bb_cfg['allow_avatar_upload'] ) ? '<img align="left" height="36" width="36" style="padding-right: 3px; " src="' . $bb_cfg['avatar_path'] . '/' . $topic['author_ava'] . '" alt="" border="0" />' : '';
break;
case USER_AVATAR_REMOTE:
$avatar_img = ( $bb_cfg['allow_avatar_remote'] ) ? '<img align="left" height="36" width="36" style="padding-right: 3px;" src="' . $topic['author_ava'] . '" alt="" border="0" />' : '';
break;
case USER_AVATAR_GALLERY:
$avatar_img = ( $bb_cfg['allow_avatar_local'] ) ? '<img align="left" height="36" width="36" style="padding-right: 3px;" src="' . $bb_cfg['avatar_gallery_path'] . '/' . $topic['author_ava'] . '" alt="" border="0" />' : '';
break;
}
}
// END Ава топикстартера
'AUTHOR_AVA' => $avatar_img,
'AUTHOR_AVA' => get_avatar ($topic['author_ava'], $topic['author_ava_type'], 'allow_avatar', 36, 36),
теперь как взят вперед ? аватар показывается после темы
{t.AUTHOR_AVA}