From 3e8a226af034987600f439596f21d528636a129c Mon Sep 17 00:00:00 2001 From: john Date: Thu, 11 Oct 2018 13:12:03 +0800 Subject: [PATCH] Pman/Login.php --- Pman/Login.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Pman/Login.php b/Pman/Login.php index 676a80e..7266f02 100644 --- a/Pman/Login.php +++ b/Pman/Login.php @@ -132,6 +132,11 @@ class Pman_Login extends Pman $s = DB_DataObject::Factory('core_setting'); $oath_require_val = 1; $oath_require = $s->lookup('core', 'two_factor_authentication_requirement'); + if(!empty($oath_require)) { + if($oath_require->val == 0) { + $oath_require_val = 0; + } + } if (!$u->isAuth()) { $this->jok(array( -- 2.39.2