Skip to content

Commit 5dafc77

Browse files
committed
МУКЫШЩТ 3.1.14
1 parent c06ab42 commit 5dafc77

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

catalog/model/payment/paypal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ public function update(): void {
797797
$query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "setting` WHERE store_id = '0' AND `key` = 'payment_paypal_setting'");
798798

799799
if ($query->row) {
800-
$setting[$query->row['key']] = json_decode($query->row['value'], true);
800+
$setting = json_decode($query->row['value'], true);
801801
}
802802

803803
$setting['payment_paypal_setting']['general']['order_history_token'] = sha1(uniqid(mt_rand(), 1));

install.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "PayPal",
33
"code": "paypal",
44
"license": "GPL",
5-
"version": "3.1.13",
5+
"version": "3.1.14",
66
"author": "Dreamvention",
77
"link": "https://dreamvention.com/"
88
}

system/config/paypal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
$_['paypal_setting'] = [
3-
'version' => '3.1.13',
3+
'version' => '3.1.14',
44
'partner' => [
55
'production' => [
66
'partner_id' => 'TY2Q25KP2PX9L',

0 commit comments

Comments
 (0)