Skip to content

Commit 7750703

Browse files
masonmason
mason
authored and
mason
committedJul 24, 2023
Merge branch 'glb-v2.1-master' into v2.1-master
2 parents 7b787ef + 9d50ed2 commit 7750703

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed
 

‎Model/Pingback.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,9 @@ private function sendOrderEmail(Order $order) {
254254
* @throws \Exception
255255
*/
256256
private function setOrderProcessing(Order $order) {
257-
$orderStatus = Order::STATE_PROCESSING;
258-
$order->setStatus($orderStatus);
257+
$orderState = Order::STATE_PROCESSING;
258+
$order->setStatus($orderState);
259+
$order->setState($orderState);
259260
return $order->save();
260261
}
261262

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "paymentwall/module-magento2",
33
"description": "Offical Paymentwall module for Magento 2",
4-
"version": "2.5.2",
4+
"version": "2.5.3",
55
"type": "magento2-module",
66
"homepage": "https://www.paymentwall.com/?source=gh",
77
"keywords": [

‎etc/module.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
3-
<module name="Paymentwall_Paymentwall" setup_version="2.5.2" schema_version="2.5.2">
3+
<module name="Paymentwall_Paymentwall" setup_version="2.5.3" schema_version="2.5.3">
44
<sequence>
55
<module name="Magento_Sales"/>
66
<module name="Magento_Payment"/>

0 commit comments

Comments
 (0)
Please sign in to comment.