This is very small hack from me.
There is limit of 50 posts/topics in the user search
I want to look up for ALL posts from one user.
so this is the code that only limit to 50 posts/topics.
find this in ubb_profile.cgi
# limit to last 50 posts
$total = @rev_posts;
if ($total > 50) {
@rev_posts = @rev_posts[0 .. 49];
}
delete or Comment it out.
[This message has been edited by ELY_M (edited 04-01-2002).]