remove d3database call because of nt set requirement ModCfg
This commit is contained in:
parent
1b216426ed
commit
f473fbc473
@ -59,16 +59,18 @@ class d3totp extends BaseModel
|
|||||||
public function loadByUserId($userId)
|
public function loadByUserId($userId)
|
||||||
{
|
{
|
||||||
$this->userId = $userId;
|
$this->userId = $userId;
|
||||||
$oQB = d3database::getInstance()->getQueryBuilder();
|
//$oQB = d3database::getInstance()->getQueryBuilder();
|
||||||
$oDb = $this->d3GetDb();
|
$oDb = $this->d3GetDb();
|
||||||
|
|
||||||
if ($oDb->getOne("SHOW TABLES LIKE '".$this->tableName."'")) {
|
if ($oDb->getOne("SHOW TABLES LIKE '".$this->tableName."'")) {
|
||||||
$oQB->select('oxid')
|
$query = "SELECT oxid FROM ".$this->getViewName().' WHERE oxuserid = '.$oDb->quote($userId).' LIMIT 1';
|
||||||
|
/*$oQB->select('oxid')
|
||||||
->from($this->getViewName())
|
->from($this->getViewName())
|
||||||
->where("oxuserid = " . $oQB->createNamedParameter($userId))
|
->where("oxuserid = " . $oQB->createNamedParameter($userId))
|
||||||
->setMaxResults(1);
|
->setMaxResults(1);
|
||||||
|
*/
|
||||||
$this->load($oDb->getOne($oQB->getSQL(), $oQB->getParameters()));
|
//$this->load($oDb->getOne($oQB->getSQL(), $oQB->getParameters()));
|
||||||
|
$this->load($oDb->getOne($query));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user