This is the first 16 lines of my version - does this not match your version?
PHP Code:
<?php
if (!isset($GLOBALS['vbulletin']->db))
{
exit;
}
require_once(DIR . '/includes/class_vurl.php');
class vB_HumanVerify_New_Recaptcha extends vB_HumanVerify_Abstract
{
public static $verify_url = 'https://www.google.com/recaptcha/api/siteverify';
function vB_HumanVerify_New_Recaptcha(&$registry)
{
// parent::vB_HumanVerify_Abstract($registry);
parent::__construct($registry);
}
Complete file is attached.