From 0863fafec0dba7a9af77923607865c399f97c3f4 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Thu, 9 Jun 2022 01:49:22 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B2=BD=EB=A7=A4=EA=B0=80=20=EC=8B=9C?= =?UTF-8?q?=EC=9E=91=ED=9B=84=203=EA=B0=9C=EC=9B=94=EC=9D=B4=20=EC=95=84?= =?UTF-8?q?=EB=8B=88=EB=9D=BC=204=EA=B0=9C=EC=9B=94=EB=A1=9C=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=EB=90=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/API/Auction/OpenBuyRiceAuction.php | 2 +- hwe/sammo/API/Auction/OpenSellRiceAuction.php | 2 +- hwe/sammo/API/Auction/OpenUniqueAuction.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hwe/sammo/API/Auction/OpenBuyRiceAuction.php b/hwe/sammo/API/Auction/OpenBuyRiceAuction.php index ae2b74c8..b7825f23 100644 --- a/hwe/sammo/API/Auction/OpenBuyRiceAuction.php +++ b/hwe/sammo/API/Auction/OpenBuyRiceAuction.php @@ -73,7 +73,7 @@ class OpenBuyRiceAuction extends \sammo\BaseAPI $initYearMonth = Util::joinYearMonth($initYear, $initMonth); $yearMonth = Util::joinYearMonth($year, $month); - if($yearMonth <= $initYearMonth + 3){ + if($yearMonth < $initYearMonth + 3){ return '시작 후 3개월이 지나야 경매를 열 수 있습니다.'; } diff --git a/hwe/sammo/API/Auction/OpenSellRiceAuction.php b/hwe/sammo/API/Auction/OpenSellRiceAuction.php index efb38972..faddaf24 100644 --- a/hwe/sammo/API/Auction/OpenSellRiceAuction.php +++ b/hwe/sammo/API/Auction/OpenSellRiceAuction.php @@ -73,7 +73,7 @@ class OpenSellRiceAuction extends \sammo\BaseAPI $initYearMonth = Util::joinYearMonth($initYear, $initMonth); $yearMonth = Util::joinYearMonth($year, $month); - if($yearMonth <= $initYearMonth + 3){ + if($yearMonth < $initYearMonth + 3){ return '시작 후 3개월이 지나야 경매를 열 수 있습니다.'; } diff --git a/hwe/sammo/API/Auction/OpenUniqueAuction.php b/hwe/sammo/API/Auction/OpenUniqueAuction.php index 40def74d..0071d763 100644 --- a/hwe/sammo/API/Auction/OpenUniqueAuction.php +++ b/hwe/sammo/API/Auction/OpenUniqueAuction.php @@ -64,7 +64,7 @@ class OpenUniqueAuction extends \sammo\BaseAPI $initYearMonth = Util::joinYearMonth($initYear, $initMonth); $yearMonth = Util::joinYearMonth($year, $month); - if($yearMonth <= $initYearMonth + 3){ + if($yearMonth < $initYearMonth + 3){ return '시작 후 3개월이 지나야 경매를 열 수 있습니다.'; }