I've replaced
- Code: Select all
$first_date = '<span style="line-height: 16px; font-size: 16px; font-weight: bolder; vertical-align: middle;">·</span> ';
$topic_text = strlen($lang['Birthday']) > 18 ? substr($lang['Birthday'], 0, 17) . '...' : $lang['Birthday'];
by
- Code: Select all
$first_date = '<span style="line-height: 16px; font-size: 16px; font-weight: bolder; vertical-align: middle;">·</span><span class="gensmall">Birthday </span><br /> ';
$topic_text = strlen($users['user_name_first']) > 18 ? substr($users['user_name_first'], 0, 17) . '...' : $users['user_name_first'];
Now, at first sight, everything looks normal. But when I go to the month January, it's showing "Birthday" on the first of that month, without a name or anything.. And there aren't users who are having birthday on that date.. And that doesn't look very nice. Can someone help me with this? Thx a lot!

