From: john Date: Thu, 11 Oct 2018 04:45:55 +0000 (+0800) Subject: Pman/Login.php X-Git-Url: http://git.roojs.org/?p=Pman.Base;a=commitdiff_plain;h=67c332968f726e75532a8015de414e151513842c Pman/Login.php --- diff --git a/Pman/Login.php b/Pman/Login.php index c5378af..030df5c 100644 --- a/Pman/Login.php +++ b/Pman/Login.php @@ -131,10 +131,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' => empty($oath_require) || $oath_require == 1 ? 1 : 0 + 'require_oath' => empty($oath_require) || $oath_require == 1 ? 1 : 0 )); exit; }