From 1dcace7a621356a6a2b0375c6b38112000360f67 Mon Sep 17 00:00:00 2001 From: hide_d Date: Wed, 25 Sep 2019 02:17:27 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9E=90=EC=9C=A8=ED=96=89=EB=8F=99=20?= =?UTF-8?q?=ED=95=AD=EC=83=81=20=EC=9C=A0=ED=9A=A8=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/j_server_basic_info.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hwe/j_server_basic_info.php b/hwe/j_server_basic_info.php index 9206b06d..787f87bb 100644 --- a/hwe/j_server_basic_info.php +++ b/hwe/j_server_basic_info.php @@ -20,7 +20,10 @@ function getAutorunInfo($autorunOption){ } } $limit = Util::toInt($autorunOption['limit_minutes']); - if($limit % 60 == 0){ + if($limit >= 43200){ + $auto_info['제한'] = '항상 유효'; + } + else if($limit % 60 == 0){ $auto_info['제한'] = ($limit/60).'시간 유효'; } else{