ive noticed that long topics can throw the formatting of the vbulletin index page off, so in irconline.php i replaced:
$topic = $_POST['topic'];
with:
$topic_maxlength = 50; // max # of topic chars to show
if (strlen($_POST['topic']) > $topic_maxlength) {
$topic = substr($_POST['topic'],0,$topic_maxlength)."...";
}
else {
$topic = $_POST['topic'];
}
so that only 50 characters (plus '...' , so 53 total) will show up from the topic, of course you can increase or decrease the number of characters you want to show you.
this mod is grrrrrreaT!