DataObjects/Core_person.php
authorjohn <john@roojs.com>
Thu, 11 Oct 2018 04:50:53 +0000 (12:50 +0800)
committerjohn <john@roojs.com>
Thu, 11 Oct 2018 04:50:53 +0000 (12:50 +0800)
DataObjects/Core_person.php

index 7ea9978..daed28e 100644 (file)
@@ -673,11 +673,12 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject
         $aur['dailykey'] = '';
         $aur['oath_key'] = '';
         $aur['require_oath'] =  1;
+        $aur['oath_key_enable'] = !empty($this->oath_key);
         
         $s = DB_DataObject::Factory('core_setting');
         $oath_require = $s->lookup('core', 'two_factor_authentication_requirement');
         if(empty($oath_require) || $oath_require == 1) {
-            $aur['oath_key_enable'] = !empty($this->oath_key);
+            
             $aur['require_oath'] =  1;
         }