mirror of
https://git.d3data.de/3rdParty/captcha-module.git
synced 2024-11-21 14:13:11 +01:00
mod CHANGELOG.md, add some comments
This commit is contained in:
parent
69618b8db5
commit
2ac4507ace
@ -19,8 +19,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
||||||
|
## 2.0.8 - 08 September 2023
|
||||||
|
- add check for Amazon Pay - no Captcha
|
||||||
|
|
||||||
## 2.0.7 - 08 September 2023
|
## 2.0.7 - 08 September 2023
|
||||||
-
|
- add check for PayPal Checkout - no Captcha
|
||||||
|
|
||||||
## 2.0.6 - 18 Juli 2023
|
## 2.0.6 - 18 Juli 2023
|
||||||
- don't request captcha if user is logged in
|
- don't request captcha if user is logged in
|
||||||
|
@ -30,6 +30,7 @@ class oeUserComponent extends oeUserComponent_parent
|
|||||||
|
|
||||||
public function createUser()
|
public function createUser()
|
||||||
{
|
{
|
||||||
|
/* START check for Amazon Pay - no Captcha */
|
||||||
ob_start();
|
ob_start();
|
||||||
debug_print_backtrace();
|
debug_print_backtrace();
|
||||||
$trace = ob_get_contents();
|
$trace = ob_get_contents();
|
||||||
@ -39,11 +40,14 @@ class oeUserComponent extends oeUserComponent_parent
|
|||||||
{
|
{
|
||||||
return parent::createUser();
|
return parent::createUser();
|
||||||
}
|
}
|
||||||
|
/* END check for Amazon Pay - no Captcha /
|
||||||
|
|
||||||
|
/* START check for PayPal Checkout - no Captcha */
|
||||||
if(\OxidEsales\Eshop\Core\Registry::getConfig()->getRequestParameter('fnc') == 'approveOrder')
|
if(\OxidEsales\Eshop\Core\Registry::getConfig()->getRequestParameter('fnc') == 'approveOrder')
|
||||||
{
|
{
|
||||||
return parent::createUser();
|
return parent::createUser();
|
||||||
}
|
}
|
||||||
|
/* START check for PayPal Checkout - no Captcha */
|
||||||
|
|
||||||
if (!$this->getCaptcha()->passCaptcha()) {
|
if (!$this->getCaptcha()->passCaptcha()) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -37,7 +37,7 @@ $aModule = array(
|
|||||||
'en' => 'OXID eSales Simple Captcha Module',
|
'en' => 'OXID eSales Simple Captcha Module',
|
||||||
),
|
),
|
||||||
'thumbnail' => 'out/pictures/picture.png',
|
'thumbnail' => 'out/pictures/picture.png',
|
||||||
'version' => '2.0.7',
|
'version' => '2.0.8',
|
||||||
'author' => 'OXID eSales AG',
|
'author' => 'OXID eSales AG',
|
||||||
'url' => 'https://www.oxid-esales.com/',
|
'url' => 'https://www.oxid-esales.com/',
|
||||||
'email' => '',
|
'email' => '',
|
||||||
|
Loading…
Reference in New Issue
Block a user