I got bored, so I wrote this code up myself. As in my above post, this modification make it so a line break is only displayed if the user has set a custom title for themself. It's a little beautification detail that'll add a bit of profesionalism to your board
Here's the mod:
In public_topic_page.pl:
Find:
code:
Add Below:
code:
[qb][/qb]
Find:
code:
if ($alt_color eq "$vars_style{AltColumnColor1}") {
$alt_color = "$vars_style{AltColumnColor2}";
} else {
$alt_color = "$vars_style{AltColumnColor1}";
}
Add Below:
code:
[qb] if ($user_profile[16] eq '') {
$line_break = '';
} else {
$line_break = "
";
}
[/qb]
Find:
code:
$user_status
$user_profile[16]
Replace With:
code:
[qb]$user_status
$line_break
$user_profile[16]
[/qb]
That's it

Reupload, clear Topic Page cache, and you're done
