BoardList.class.php:
$this_last_post['link'] = '<a href="' . $this_last_post['href'] . '" title="' . $row_board['subject'] . '">' . $row_board['short_subject'] . '</a>';
to:
$this_last_post['link'] = '<a href="' . $this_last_post['href'] . '" title="' . $row_board['subject'] . '">' . $row_board['subject'] . '</a>';
you get the whole thing.
Then, if you want to have the subject on its own line:
.lastpost_link {
display: block;
}
.board_lastposter {
display: inline;
}
.board_lasttime {
display: inline;
padding-left: 0.3em;
}
Or something like that.