For those who had a problem like this one:
Warning: Missing argument 2 for getpostbit() in /usr/www/users/gandalf/starwarsguide.com/forums/admin/functions.php on line 57
It is an easy fix. and maybe firefly can update his hack with this if he feels like it

. He has you change the following:
function getpostbit($post) {
To the following:
function getpostbit($post,$templatename) {
How about instead of that, you change it to the following:
function getpostbit($post,$templatename='postbit') {
That makes it so that second argument is optional, and if its not used, it defaults its value to postbit. That means that if any other calls are made to getpostbit() expecting the unhacked version of the function, they will operate as expected