Skip to content

Commit e6cb773

Browse files
authored
Merge pull request #369 from buckaroo-it/develop
Update, Test & Release (4.2.2)
2 parents fc925c7 + df368e9 commit e6cb773

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Author: Buckaroo
77
Author URI: http://www.buckaroo.nl
88
Description: Buckaroo payment system plugin for WooCommerce.
9-
Version: 4.2.1
9+
Version: 4.2.2
1010
Text Domain: wc-buckaroo-bpe-gateway
1111
License: GPLv2 or later
1212
License URI: http://www.gnu.org/licenses/gpl-2.0.html

languages/wc-buckaroo-bpe-gateway.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the GPLv2 or later.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: WC Buckaroo BPE Gateway 4.2.1\n"
5+
"Project-Id-Version: WC Buckaroo BPE Gateway 4.2.2\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-buckaroo-bpe-gateway\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <LL@li.org>\n"

readme.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Author: Buckaroo
44
Tags: WooCommerce, payments, Buckaroo
55
Requires at least: 5.3.18
66
Tested up to: 6.7.2
7-
Stable tag: 4.2.1
7+
Stable tag: 4.2.2
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -72,6 +72,8 @@ The “Buckaroo Woocommerce Payments Plugin” has been translated into 3 locale
7272
[Translate “Buckaroo Woocommerce Payments Plugin” into your language.](https://translate.wordpress.org/projects/wp-plugins/wc-buckaroo-bpe-gateway/)
7373

7474
== Changelog ==
75+
= 4.2.2 =
76+
BP-4406 Fix: iDEAL in3 critical error
7577
= 4.2.1 =
7678
BP-4404 Fix: Invoice/order number for Riverty transactions in the Buckaroo plaza are incorrect due to a suffix that is added.
7779
BP-4402 Fix: PayPal Express checkout returns error “Cannot process Buckaroo transaction”

src/Core/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Plugin
1616
*
1717
* @var string
1818
*/
19-
public const VERSION = '4.2.1';
19+
public const VERSION = '4.2.2';
2020

2121
/**
2222
* Instance of PaymentGatewayRegistry.

src/Gateways/In3/In3Processor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ private function getBilling(): array
3030
'firstName' => $this->getAddress('billing', 'first_name'),
3131
'lastName' => $this->getAddress('billing', 'last_name'),
3232
'birthDate' => date('Y-m-d', strtotime($this->request->input('buckaroo-in3-birthdate'))),
33-
'customerNumber' => get_current_user_id() ?: null,
33+
'customerNumber' => get_current_user_id() ?? '',
3434
'phone' => $phone,
3535
'country' => $this->getAddress('billing', 'country'),
3636
],

0 commit comments

Comments
 (0)