truonglv
Well-known member
Hi! Im not sure is bug! On debug enabled or disabled you only use paypal on live. No way to change sandbox mod!
In XenForo_ControllerPublic_Account::1472
But in processor you check:
In XenForo_ControllerPublic_Account::1472
Code:
'payPalUrl' => 'https://www.paypal.com/cgi-bin/webscr',
Code:
if ($this->_filtered['test_ipn'] && XenForo_Application::debugMode())
{
$validator = XenForo_Helper_Http::getClient('https://www.sandbox.paypal.com/cgi-bin/webscr');
}
else
{
$validator = XenForo_Helper_Http::getClient('https://www.paypal.com/cgi-bin/webscr');
}