Re: [minimod] Last topic name in forum list.

replace

$last_post = '<a href="viewtopic.php?pid='.$cur_forum['last_post_id'].'#p'.$cur_forum['last_post_id'].'">'.format_time($cur_forum['last_post']).'</a> '.$lang_common['by'].' '.pun_htmlspecialchars($cur_forum['last_poster']).'<span class="byuser">'.$lang_common['in'].' <a href="viewtopic.php?id='.$cur_forum['last_tid'].'">'.pun_htmlspecialchars($cur_forum['last_subject']).'</a></span>';

with

$last_post = '<a href="viewtopic.php?pid='.$cur_forum['last_post_id'].'#p'.$cur_forum['last_post_id'].'">'.pun_htmlspecialchars($cur_forum['subject']).'</a>.'<br />at '.format_time($cur_forum['last_post'] <br />'.$lang_common['by'].' '.pun_htmlspecialchars($cur_forum['last_poster']));

that might work

Re: [minimod] Last topic name in forum list.

That gives me an error

Parse error: parse error, unexpected '>'

Re: [minimod] Last topic name in forum list.

whoops

        $last_post = '<a href="viewtopic.php?pid='.$cur_forum['last_post_id'].'#p'.$cur_forum['last_post_id'].'">'.pun_htmlspecialchars($cur_forum['subject']).'</a> <br />at '.format_time($cur_forum['last_post']).'<br /> '.$lang_common['by'].' '.pun_htmlspecialchars($cur_forum['last_poster']);

Sorry about that. This one works in 1.2.4 not sure about 1.2.5 but I don't see any reason why it won't.