자율행동 항상 유효 변경

This commit is contained in:
2019-09-25 02:17:27 +09:00
parent 8f107b56b3
commit 1dcace7a62
+4 -1
View File
@@ -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{