
02-05-2019, 01:26 AM
|
|
|
Join Date: Nov 2007
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by jetkai
If anyone is having issues with PHP 7+ / vb 4.2.5 with the following error Call to undefined method vB_HumanVerify_Abstract::vB_HumanVerify_Abstract() on line 14
You'll need to replace the following in class_humanverify_new_recaptcha.php:
Code:
function vB_HumanVerify_New_Recaptcha(&$registry)
{
parent::vB_HumanVerify_Abstract($registry);
}
with
Code:
function vB_HumanVerify_New_Recaptcha(&$registry)
{
parent::__construct($registry);
}
not sure if there are any more issues aside from this, but registering works now on my forum.
|
thanks!! is working!
|