Ogólna pomoc dotycząca stylów - Pomógł 0 razy się nie wyświetla
Doktor - 01-11-2013, 20:55 Temat postu: Pomógł 0 razy się nie wyświetla Zrobiłem pomógł i przerobiłem trochę Reputację ale jak ktoś ma 0 punktów pomógł to mu się nie wyświetla jak na obrazku I się pytam jak zrobić żeby było, że jak ktoś ma 0 punktów pomógł to ma też to wyświetlone?
Tommekk80 - 02-11-2013, 05:41
viewtopic.php
Kod: | $helped_how_much = ($rank < 2) ? $lang['help_1'] : $lang['help_more'];
$special_rank = ($rank > 0 && $poster_id != ANONYMOUS && $postrow[$i]['user_allow_helped']) ? (($postrow[$i]['user_gender'] == 2) ? $lang['postrow_help_she'] : $lang['postrow_help']) . $rank . $helped_how_much . '<br />' : ''; |
zamień na
Kod: | $helped_how_much = (($rank < 2)) && ($rank > 0) ? $lang['help_1'] : $lang['help_more'];
$special_rank = ($rank >= 0 && $poster_id != ANONYMOUS && $postrow[$i]['user_allow_helped']) ? (($postrow[$i]['user_gender'] == 2) ? $lang['postrow_help_she'] : $lang['postrow_help']) . $rank . $helped_how_much . '<br />' : ''; |
|
|
|