FYI there is a small bug- the style attribute is duplicated for all unread threads, since the make-up code also inserts a style tag.
Fix:
In the threadbit plugin, find:
PHP Code:
$vbulletin->templatecache['threadbit'] = str_replace('id=\"thread_title_$thread[realthreadid]','style=\"'.$vbulletin->templatecache['cyb_tlmu_titles'].'\" id=\"thread_title_$thread[realthreadid]',$vbulletin->templatecache['threadbit']);
Replace:
PHP Code:
$vbulletin->templatecache['threadbit'] = str_replace('style=\"font-weight:bold\"','',$vbulletin->templatecache['threadbit']);
$vbulletin->templatecache['threadbit'] = str_replace('id=\"thread_title_$thread[realthreadid]','style=\"'.$vbulletin->templatecache['cyb_tlmu_titles'].'\" id=\"thread_title_$thread[realthreadid]',$vbulletin->templatecache['threadbit']);
On my forum, I only use this portion of the hack to highlight moderated threads in red, so I've further wrapped both lines of code in a can_moderate conditional to save server resources