You're missing a closing bracket at line 265.
PHP Code:
// sanity check, though there should never really be an empty string for a password
$return_value = false;
($hook = vBulletinHook::fetch_hook('login_verify_failure_password')) ? eval($hook) : false;
if (isset($return_value))
{
// unset $return_value if you want to run the $send_cookies stuff
return $return_value;
to
PHP Code:
// sanity check, though there should never really be an empty string for a password
$return_value = false;
($hook = vBulletinHook::fetch_hook('login_verify_failure_password')) ? eval($hook) : false;
if (isset($return_value))
{
// unset $return_value if you want to run the $send_cookies stuff
return $return_value;
}