DataObjects/Core_person.php
authorjohn <john@roojs.com>
Thu, 11 Oct 2018 03:36:17 +0000 (11:36 +0800)
committerjohn <john@roojs.com>
Thu, 11 Oct 2018 03:36:17 +0000 (11:36 +0800)
DataObjects/Core_person.php

index 2e99395..2bcb0e4 100644 (file)
@@ -674,7 +674,7 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject
         $aur['oath_key_enable'] = !empty($this->oath_key);
         
         $s = DB_DataObject::Factory('core_setting');
-        $aur['disable_oath'] = empty($s->lookup('core', 'two_factor_authentication')) ? 0 : 1;
+        $aur['disable_oath'] = (bool) $s->lookup('core', 'two_factor_authentication') ? 0 : 1;
         
         return $aur;
     }