From dc526c7359a47b227888b846c7e5624d3ef1ce1d Mon Sep 17 00:00:00 2001 From: Hide_D Date: Thu, 10 Aug 2023 19:06:40 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=97=B0=EA=B0=90=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/v_history.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hwe/v_history.php b/hwe/v_history.php index c8ebdad2..1220ec45 100644 --- a/hwe/v_history.php +++ b/hwe/v_history.php @@ -28,10 +28,10 @@ if ($serverID !== UniqueConst::$serverID) { if($serverID === UniqueConst::$serverID){ [$currentYear, $currentMonth] = $gameStor->getValuesAsArray(['year', 'month']); if($f_year === null || $l_year === null){ - $f_year = $currentYear - 1; + $f_year = $currentYear; $f_month = $currentMonth - 1; - $l_year = $currentYear - 1; + $l_year = $currentYear; $l_month = $currentMonth - 1; } }