비밀번호 변경시기 체크 추가
Some checks failed
Close Pull Request / main (pull_request_target) Has been cancelled

This commit is contained in:
yangsh
2025-12-31 15:12:07 +09:00
parent 04a06f1781
commit de9b295e1c

View File

@@ -32,7 +32,7 @@ abstract class BaseController extends Controller
$usr_id = session('usr_id'); $usr_id = session('usr_id');
$diff = $userModel->chkChgPwDiff($usr_id); $diff = $userModel->chkChgPwDiff($usr_id);
if ($diff >= 1) { if ($diff >= 180) {
$this->data['pwExpire'] = true; $this->data['pwExpire'] = true;
} else { } else {
$this->data['pwExpire'] = false; $this->data['pwExpire'] = false;