Summary:
Incorrect version # for CGPaymentGatewayBase
Detailed Description:
When trying to install PayPayGateway 2.3.7 into an existing site that has
CGPaymentGatewayBase 1.0.11 installed, I receive the following message:
Missing Dependency CGPaymentGatewayBase v1.1
The version number for CGPaymentGatewayBase in PaypalGateway.module.php is
incorrect:
/*---------------------------------------------------------
GetDependencies()
---------------------------------------------------------*/
function GetDependencies()
{
return array('CGExtensions'=>'1.24',
'CGPaymentGatewayBase'=>'1.1');
}
Should be
/*---------------------------------------------------------
GetDependencies()
---------------------------------------------------------*/
function GetDependencies()
{
return array('CGExtensions'=>'1.24',
'CGPaymentGatewayBase'=>'1.0.11');
}
Cheers,
Penny