Bug User Import userId undefine

This commit is contained in:
Fred Tempez 2025-01-09 19:56:43 +01:00
parent 73e9c82ef6
commit 44ac9a25a6

View File

@ -1400,12 +1400,13 @@ class user extends common
$item['groupe'] = ($item['groupe'] >= self::GROUP_BANNED and $item['groupe'] <= self::GROUP_ADMIN)
? $item['groupe'] : 1;
// L'utilisateur existe
if ($this->getData(['user', helper::filter($item['id'], helper::FILTER_ID)])) {
$userId = helper::filter($item['id'], helper::FILTER_ID);
if ($this->getData(['user', $userId])) {
// Notification du doublon
$item['notification'] = template::ico('cancel');
// Création du tableau de confirmation
self::$users[] = [
helper::filter($item['id'], helper::FILTER_ID),
$userId,
$item['nom'],
$item['prenom'],
self::$groups[$item['groupe']],
@ -1420,7 +1421,6 @@ class user extends common
// L'utilisateur n'existe pas
} else {
// Nettoyage de l'identifiant
$userId = helper::filter($item['id'], helper::FILTER_ID);
// Enregistre le user
$create = $this->setData([
'user',