Verfasst: 13.04.2003 19:58
so, bin wieder da
tut mir leid, hat sich nichts getan
@Jason
nimm acid's neue version.
die läuft super!

tut mir leid, hat sich nichts getan

@Jason
nimm acid's neue version.
die läuft super!
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Hi,Murphy hat geschrieben:so, bin wieder da![]()
tut mir leid, hat sich nichts getan![]()
@Jason
nimm acid's neue version.
die läuft super!
Code: Alles auswählen
if ( $postrow[$i]['user_custom_rank'] )
{
$poster_custom_rank = ( $postrow[$i]['user_custom_rank'] && $postrow[$i]['user_id'] != ANONYMOUS ) ? $postrow[$i]['user_custom_rank'] : '';
$poster_rank = '';
$rank_image = '';
}
Code: Alles auswählen
if ( $postrow[$i]['user_custom_rank'] )
{
$poster_custom_rank = ( $postrow[$i]['user_custom_rank'] && $postrow[$i]['user_id'] != ANONYMOUS ) ? $postrow[$i]['user_custom_rank'] : '';
$poster_rank = '';
}
Code: Alles auswählen
$rank_image = '';
Code: Alles auswählen
if ( $profiledata['user_custom_rank'] )
{
$poster_custom_rank = ( $profiledata['user_custom_rank'] ) ? $profiledata['user_custom_rank'] : ' ';
if ( $profiledata['user_level'] != MOD )
{
$poster_rank = '';
}
}
Thnx Murphy!Murphy hat geschrieben:ich habs jetzt auch mal geändert:
jetzt wie folgt...
ohne Image (Rangsterne)
Code: Alles auswählen
if ( $postrow[$i]['user_custom_rank'] ) { $poster_custom_rank = ( $postrow[$i]['user_custom_rank'] && $postrow[$i]['user_id'] != ANONYMOUS ) ? $postrow[$i]['user_custom_rank'] : ''; $poster_rank = ''; $rank_image = ''; }
mit Image (Rangsterne)
Anscheinend wird in der neueren Version hierCode: Alles auswählen
if ( $postrow[$i]['user_custom_rank'] ) { $poster_custom_rank = ( $postrow[$i]['user_custom_rank'] && $postrow[$i]['user_id'] != ANONYMOUS ) ? $postrow[$i]['user_custom_rank'] : ''; $poster_rank = ''; }
das Image vom "costum rank" abgefragt.Code: Alles auswählen
$rank_image = '';
Da das aber nicht existiert, wird auch nichts angezeigt.
Weglassen = Image von Rängen
Dabeilassen = ohne Image von Rängen