Ted you mentioned earlier that in helpfulanswers.php we could print the username to the screen (which would be incredibly nice) but I don't think you are grabbing that from a quick look at the query. You're grabbing the userid though so maybe you could alter the query to reference the userlist table and get the username. Would really tie that page together and make it useful to see at a glance who uses the system.
Code:
SELECT post.postid,post.title as posttile,helpfulpost.goodrank,helpfulpost.totalrank,helpfulpost.lastvote,thread.threadid,thread.title as title,forum.title as ftitle $helpful_selectby
FROM " . TABLE_PREFIX . "helpfulpost as helpfulpost
INNER JOIN " . TABLE_PREFIX . "post AS post ON(helpfulpost.postid = post.postid)
INNER JOIN " . TABLE_PREFIX . "thread AS thread ON(post.threadid = thread.threadid)
INNER JOIN " . TABLE_PREFIX . "forum AS forum ON(thread.forumid = forum.forumid)
WHERE goodrank > 0
Also is there anyway you could post the javascript to enhance our thumbs up/down with the greyed out image (I have these)? I would love to test this on my board.