if you are getting an error when you are trying to view announcements then.....
in /includes/functions_showthread.php
instead of finding
PHP Code:
$show['messageicon'] = iif($post['iconpath'], true, false);
find:
PHP Code:
$show['reputationlink'] = iif($vboptions['reputationenable'] AND $bbuserinfo['userid'] AND $post['userid'] AND !($usergroupcache["$post[usergroupid]"]['genericoptions'] & ISBANNEDGROUP), true, false);
then add above it:
PHP Code:
// AWARDS IN POSTBIT
foreach($awards AS $useraward)
{
$userawardid = "award$useraward[awardid]";
if (!empty($post[$userawardid]))
{
$userawardid_desc = $userawardid."_desc";
if ($post[$userawardid_desc] != '')
{
$useraward[description] = $post[$userawardid_desc];
}
eval('$awardsbit .= "' . fetch_template('award') . '";');
}
}
// END AWARDS IN POSTBIT
I will update all the files soon with all the current bug fixes plus instructions for versions less than RC 4. Sorry for the inconvinience