Well there are two things in that thread you has to get right. one was this.
@SuperG: Put the code just above the following in global.php so its run on everypage and you could be able to add the $threadbits variable in any of the templates:
Code:
// parse some global templates
If vB use that variable on any page then you'll need to change this line:
Code:
require_once('./includes/functions_forumlist.php');
eval("\$threadbits .= \"".fetch_template('forumhome_latestthreadbit')."\";");
And replace $threadbits with something unique like $my_latest_threads for example and change the variable in the template accordingly.
try that, becuase you might have missed the bit were the guy got an error like you and had to add another line to the code I've highlighted in red.