diff --git a/CHANGELOG.md b/CHANGELOG.md index 71116de..72e36e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,8 +19,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Security +## 2.0.8 - 08 September 2023 +- add check for Amazon Pay - no Captcha + ## 2.0.7 - 08 September 2023 -- +- add check for PayPal Checkout - no Captcha ## 2.0.6 - 18 Juli 2023 - don't request captcha if user is logged in diff --git a/application/component/oeusercomponent.php b/application/component/oeusercomponent.php index 103a186..63b4881 100644 --- a/application/component/oeusercomponent.php +++ b/application/component/oeusercomponent.php @@ -30,6 +30,7 @@ class oeUserComponent extends oeUserComponent_parent public function createUser() { + /* START check for Amazon Pay - no Captcha */ ob_start(); debug_print_backtrace(); $trace = ob_get_contents(); @@ -39,11 +40,14 @@ class oeUserComponent extends oeUserComponent_parent { 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') { return parent::createUser(); } + /* START check for PayPal Checkout - no Captcha */ if (!$this->getCaptcha()->passCaptcha()) { return false; diff --git a/metadata.php b/metadata.php index 9dcdb89..9aaf073 100755 --- a/metadata.php +++ b/metadata.php @@ -37,7 +37,7 @@ $aModule = array( 'en' => 'OXID eSales Simple Captcha Module', ), 'thumbnail' => 'out/pictures/picture.png', - 'version' => '2.0.7', + 'version' => '2.0.8', 'author' => 'OXID eSales AG', 'url' => 'https://www.oxid-esales.com/', 'email' => '',