Skip to content
Snippets Groups Projects
Commit d42e5e0a authored by mattwire's avatar mattwire
Browse files

Release 6.10.2 - fix upgrader

parent c37bdd4c
Branches
Tags 6.10.2
No related merge requests found
......@@ -441,11 +441,14 @@ class CRM_Stripe_Upgrader extends CRM_Extension_Upgrader_Base {
return TRUE;
}
public function upgrade_6901() {
public function upgrade_6902() {
$this->ctx->log->info('Convert MOTO setting to array');
if (\Civi::settings()->get('stripe_moto') === TRUE) {
\Civi::settings()->set('stripe_moto', ['backend']);
}
else {
\Civi::settings()->set('stripe_moto', []);
}
return TRUE;
}
......
......@@ -9,6 +9,10 @@ Releases use the following numbering system:
* **[BC]**: Items marked with [BC] indicate a breaking change that will require updates to your code if you are using that code in your extension.
## Release 6.10.2 (2023-11-29)
**This is the same as 6.10.1 but with a fix for upgrader issues (https://lab.civicrm.org/extensions/stripe/-/issues/460).**
## Release 6.10.1 (2023-11-29)
* [!238](https://lab.civicrm.org/extensions/stripe/-/merge_requests/238) Add support for enabling payments on frontend forms (via setting)
......
......@@ -16,7 +16,7 @@
<email>mjw@mjwconsult.co.uk</email>
</maintainer>
<releaseDate>2023-11-29</releaseDate>
<version>6.10.1</version>
<version>6.10.2</version>
<develStage>stable</develStage>
<compatibility>
<ver>5.64</ver>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment