diff --git a/CHANGELOG.md b/CHANGELOG.md index 765ff79..bd0e1c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [2.0.2] - 2024-??-?? +## [2.0.2] - 2024-02-09 - Fix onBording in OXID-Enterprise-Environment diff --git a/extend/Application/Controller/Admin/ModuleConfiguration.php b/extend/Application/Controller/Admin/ModuleConfiguration.php index f338513..6d39667 100644 --- a/extend/Application/Controller/Admin/ModuleConfiguration.php +++ b/extend/Application/Controller/Admin/ModuleConfiguration.php @@ -128,7 +128,7 @@ public function stripeIsStripe() public function stripeGetConnectUrl($sVarName) { $sMode = $sVarName == 'sStripeTestToken' ? 'test' : 'live'; - $redirectUrl = Registry::getConfig()->getSslShopUrl().'admin/index.php?cl=stripeConnect&fnc=stripeFinishOnBoarding'; + $redirectUrl = Registry::getConfig()->getShopUrl(0,true).'admin/index.php?cl=stripeConnect&fnc=stripeFinishOnBoarding'; $redirectUrl.= '&stoken=' . Registry::getSession()->getSessionChallengeToken(); $redirectUrl.= '&shop_param=' . $sMode; $redirectUrl.= '&shp=' . Registry::getConfig()->getShopId(); diff --git a/metadata.php b/metadata.php index 434af28..7cfb03c 100644 --- a/metadata.php +++ b/metadata.php @@ -24,7 +24,7 @@ 'en' => 'This module integrates STRIPE as payment provider in your OXID Shop.', ], 'thumbnail' => 'img/stripe_logo.png', - 'version' => '2.0.2-rc.1', + 'version' => '2.0.2', 'author' => 'OXID eSales AG', 'url' => 'https://www.oxid-esales.com', 'email' => 'info@oxid-esales.com',