Skip to content

Commit

Permalink
Fix patch
Browse files Browse the repository at this point in the history
[#528](#528) に伴う修正
  • Loading branch information
nanasess committed Mar 22, 2022
1 parent 1cb56c7 commit 7bc55e5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions zap/patches/0009-cart_delete.patch
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
From 274562f19542ac7548c75a65677d0e46af89a655 Mon Sep 17 00:00:00 2001
From e5ff639f14b96837824a1e923db7b36ee8d375b0 Mon Sep 17 00:00:00 2001
From: Kentaro Ohkouchi <[email protected]>
Date: Fri, 18 Feb 2022 15:56:54 +0900
Date: Tue, 22 Mar 2022 11:37:23 +0900
Subject: [PATCH] =?UTF-8?q?=E3=82=AB=E3=83=BC=E3=83=88=E5=89=8A=E9=99=A4?=
=?UTF-8?q?=E3=81=97=E3=81=AA=E3=81=84=E3=82=88=E3=81=86=E3=81=AB=E3=81=99?=
=?UTF-8?q?=E3=82=8B=E3=83=91=E3=83=83=E3=83=81?=
Expand All @@ -13,15 +13,15 @@ Content-Transfer-Encoding: 8bit
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data/class/SC_CartSession.php b/data/class/SC_CartSession.php
index add3a0555..b022d932f 100644
index 0e0390a2d..99a55370c 100644
--- a/data/class/SC_CartSession.php
+++ b/data/class/SC_CartSession.php
@@ -518,7 +518,7 @@ class SC_CartSession
$max = $this->getMax($productTypeId);
@@ -536,7 +536,7 @@ class SC_CartSession
$max = $this->getMax($product_type_id);
for ($i = 0; $i <= $max; $i++) {
if ($this->cartSession[$productTypeId][$i]['cart_no'] == $cart_no) {
- unset($this->cartSession[$productTypeId][$i]);
+ // unset($this->cartSession[$productTypeId][$i]);
if ($this->cartSession[$product_type_id][$i]['cart_no'] == $cart_no) {
- unset($this->cartSession[$product_type_id][$i]);
+ // unset($this->cartSession[$product_type_id][$i]);
}
}
}
Expand Down

0 comments on commit 7bc55e5

Please sign in to comment.