The method for adding a column was changed in this version to speed it up slightly. Open up global_start.php.
FIND:
Code:
$spacer_open = '<table width="'.$stylevar['outertablewidth'].'" border="0" cellpadding="0" cellspacing="0" align="center"><tr><td valign="top">'.$spacer_open;
// Legacy column insertion. If you're having trouble adding your column in the right place, comment out the line
// above (add // in front of it), uncomment the 2 lines below and change '$spacer_open' to something else in your header template to do a search-and-add on.
// $rc_str_replace = '<table width="'.$stylevar['outertablewidth'].'" border="0" cellpadding="0" cellspacing="0" align="center"><tr><td valign="top">';
// $vbulletin->templatecache['header'] = str_replace('$spacer_open', $vbulletin->db->escape_string($rc_str_replace).'$spacer_open', $vbulletin->templatecache['header']);
REPLACE WITH:
Code:
// $spacer_open = '<table width="'.$stylevar['outertablewidth'].'" border="0" cellpadding="0" cellspacing="0" align="center"><tr><td valign="top">'.$spacer_open;
// Legacy column insertion. If you're having trouble adding your column in the right place, comment out the line
// above (add // in front of it), uncomment the 2 lines below and change '$spacer_open' to something else in your header template to do a search-and-add on.
$rc_str_replace = '<table width="'.$stylevar['outertablewidth'].'" border="0" cellpadding="0" cellspacing="0" align="center"><tr><td valign="top">';
$vbulletin->templatecache['header'] = str_replace('$spacer_open', $vbulletin->db->escape_string($rc_str_replace).'$spacer_open', $vbulletin->templatecache['header']);
That
should just put it back the way it was before, I don't recall changing what I replaced.