From 4366cb6e6adda0cae4ebfc96627ad9695cd31a2c Mon Sep 17 00:00:00 2001 From: john Date: Thu, 11 Oct 2018 12:38:32 +0800 Subject: [PATCH] Pman/Login.php --- Pman/Login.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Pman/Login.php b/Pman/Login.php index 131e244..fae3e12 100644 --- a/Pman/Login.php +++ b/Pman/Login.php @@ -130,10 +130,11 @@ class Pman_Login extends Pman $u = DB_DataObject::factory($tbl); $s = DB_DataObject::Factory('core_setting'); + $oath_require = $s->lookup('core', 'two_factor_authentication_requirement'); if (!$u->isAuth()) { $this->jok(array( 'id' => 0, - 'oath_require' => (bool) $s->lookup('core', 'two_factor_authentication_requirement') ? 1 : 0 + 'oath_require' => (bool) ? 1 : 0 )); // not logged in.. exit; } -- 2.39.2