So far the only differences I see in editing code are in forumdisplay.php:
Find
Code:
$threads = $db->query_read_slave("
SELECT $votequery $previewfield
thread.threadid, thread.title AS threadtitle, thread.forumid, pollid, open, postusername, postuserid, thread.iconid AS threadiconid,
thread.dateline, notes, thread.visible, sticky, votetotal, thread.attach, $tachy_columns,
thread.prefixid, thread.taglist, hiddencount, deletedcount,
Replace with
Code:
$threads = $db->query_read_slave("
SELECT $votequery $previewfield
thread.threadid, thread.title AS threadtitle, thread.forumid, pollid, open, postusername, postuserid, thread.iconid AS threadiconid,
thread.dateline, notes, thread.visible, sticky, votetotal, thread.attach, $tachy_columns,
thread.prefixid, thread.taglist, hiddencount, deletedcount,
//reputation addon
(SELECT rsum FROM " . TABLE_PREFIX . "post where thread.firstpostid = postid) AS rsum,
(SELECT rpos FROM " . TABLE_PREFIX . "post where thread.firstpostid = postid) AS rpos,
(SELECT rneg FROM " . TABLE_PREFIX . "post where thread.firstpostid = postid) AS rneg
However - this block of code is throwing an error