From a4573d977f63f9da6dc5173ddbf31db7f0839c48 Mon Sep 17 00:00:00 2001 From: Arnaud Fornerot Date: Tue, 10 May 2022 09:24:44 +0200 Subject: [PATCH] Synchronisation scribe niveaux + eleves classes + profs classes (ref #34132) --- src/ninesurvey-1.0/src/Command/SynchroUsersCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ninesurvey-1.0/src/Command/SynchroUsersCommand.php b/src/ninesurvey-1.0/src/Command/SynchroUsersCommand.php index bfedf56..7c2f2d2 100644 --- a/src/ninesurvey-1.0/src/Command/SynchroUsersCommand.php +++ b/src/ninesurvey-1.0/src/Command/SynchroUsersCommand.php @@ -166,7 +166,7 @@ class SynchroUsersCommand extends Command $cn=$result["cn"]; $ldapfilter="(&(type=Classe)(cn=$cn))"; - $label="ELEVES DE LA CLASSE - ".$result["cn"]; + $label="ELEVES - ".$result["cn"]; $this->writeln(" - $label"); if(!$simulate) $this->addmodGroup($label,$ldapfilter,false); } @@ -179,7 +179,7 @@ class SynchroUsersCommand extends Command $cn=$result["cn"]; $ldapfilter="(|(&(type=Equipe)(cn=profs-$cn))(&(ENTPersonProfils=Administratif)(divcod=$cn)))"; - $label="PROFESSEURS DE LA CLASSE - ".$result["cn"]; + $label="PROFESSEURS - ".$result["cn"]; $this->writeln(" - $label"); if(!$simulate) $this->addmodGroup($label,$ldapfilter,false); }