View Single Post
FIX to the 5 last posts block on the front page
Old
  (#1 (permalink))
IACOJ
Moderator
 
Status: Offline
Posts: 737
Join Date: Nov 2002
FIX to the 5 last posts block on the front page - 01-22-2003, 08:42 PM

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>";
   
Reply With Quote