I disabled all plugins and products, but it did not fix the error. Below is the section of code where line 4505 just thought it might help if you could see whats there.
Note I put <this is 4505> just so the line in question could be pinpointed
PHP Code:
// #############################################################################
// spit out final HTML if we have got this far
if ($templatename != '')
{
// make navbar
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
($hook = vBulletinHook::fetch_hook('profile_complete')) ? eval($hook) : false;
// shell template
<this is 4505> eval('$HTML = "' . fetch_template($templatename) . '";');
eval('print_output("' . fetch_template($shelltemplatename) . '");');
}