Topic: Removal of "Posted by name" in the Last Post column

Hi Again

further minimising PunBB as a quasi-article manager

i need to remove the "posted by name"  in the "last post column"

i don't mind the date of the last post
but wish to hide/remove "posted by xxxx"

Thanks in advance

Re: Removal of "Posted by name" in the Last Post column

have you had a look at the code? its pretty clean and you'll probably be able to work out what you need to remove

Re: Removal of "Posted by name" in the Last Post column

Yes Connerhd, i've played around a little follwoing everyones instructions ont his great forum, but in truth i am novice at this stuff and wil ladmit i know nothign about PHP .... i am as you could say monkey see / monkey do ....

so any assistance you can offer is most appreciated.

Thanks

Re: Removal of "Posted by name" in the Last Post column

Around line 145, replace

        $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 />'.$lang_common['by'].' '.pun_htmlspecialchars($cur_forum['last_poster']).'<br />at '.format_time($cur_forum['last_post']);

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']);