1
In the user profile (Xoops 2.0.6) are listed the links to the forum posts made by that user.
When you click on them you'll go to the relative posts only if the threads are on a single page (or the posts are on the first page of a longer thread).
This can be fixed editing /modules/newbb/include/search.inc.php and simply changing the line 53:
$ret[$i]['link'] = "viewtopic.php?topic_id=".$myrow['topic_id']."&forum=".$myrow['forum_id']."#forumpost".$myrow['post_id'];
with this one:
$ret[$i]['link'] = "viewtopic.php?post_id=".$myrow['post_id']."&topic_id=".$myrow['topic_id']."&forum=".$myrow['forum_id']."#forumpost".$myrow['post_id'];