For those who are using the 5 last posts block. You may have noticed that the icon that should take you to the last post doesn't work.
To fix this. Go to line 77. Find
Code:
<a href=\"modules.php?name=Forums&file=profile&mode=viewprofile&u=$uid\">$uname</a><a href=\"modules.php?name=Forums&file=viewtopic&p=$topic_last_post_id#$topic_last_post_id\"></a><img src=\"modules/Forums/templates/fiblack/images/icon_minipost_new.gif\"></td>
</tr>";
Change it to the following and the link will work.
Code:
<a href=\"modules.php?name=Forums&file=profile&mode=viewprofile&u=$uid\">$uname</a><a href=\"modules.php?name=Forums&file=viewtopic&p=$topic_last_post_id#$topic_last_post_id\"><img src=\"modules/Forums/templates/fiblack/images/icon_minipost_new.gif\"></a></td>
</tr>";