I have found the fix for the recent forum block, (the one that show the latest 5 discussions on your homepage), If a topic got multiple pages and you click on the link to the latest post you've got linked too the fist post of the topic, now i have downloaded the block last 10 forum post scrolling from
http://www.nukecops.com and saw that they handled this problem. Open block-XXX_forums (xxx stands for the theme you use), find this code:
|
Code:
|
<a href=\"modules.php?name=Forums&file=viewtopic&t=$topic_id#$topic_last_post_id\ |
and replace it with this code:
|
Code:
|
<a href=\"modules.php?name=Forums&file=viewtopic&p=$topic_last_post_id#$topic_last_post_id\ |
This should work for phpnuke 6.0 also.
Like i said before i copied this from the scrolling block from
www.nukecops.com so they credit for this fix.