TOTP : improve email and fix small bug

This commit is contained in:
sparkyx 2025-08-05 11:56:36 +02:00
parent 4d0325438b
commit 645bc207e1
9 changed files with 49 additions and 27 deletions

View file

@ -160,12 +160,10 @@ class Dossier
from ac_dossier as ds
join jnt_use_dos as jt on (jt.dos_id=ds.dos_id)
group by jt.use_id) as dossier_name on (jt_use_id=ac.use_id)
where
use_login!=$1
$sql
";
$res=$this->cn->get_array($sql, array(NOALYSS_ADMINISTRATOR));
$res=$this->cn->get_array($sql);
return $res;
}