Pman/Login.php
[Pman.Base] / Pman / Login.php
index 3a7dc7a..c5378af 100644 (file)
@@ -129,10 +129,14 @@ class Pman_Login extends Pman
         $tbl = empty($ff->Pman['authTable']) ? 'core_person' : $ff->Pman['authTable'];
         
         $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)); // not logged in..
-            exit;
+            $this->jok(array(
+                'id' => 0,
+                'oath_require' => empty($oath_require) || $oath_require == 1 ? 1 : 0
+             ));
+             exit;
         }
         //die("got here?");
         $au = $u->getAuthUser();