From 4f2fa1db4f67a0cbd45667c9c9daa3c03f79b1ef Mon Sep 17 00:00:00 2001 From: afornerot Date: Tue, 10 May 2022 09:12:21 +0200 Subject: [PATCH] Synchronisation scribe niveaux + eleves classes + profs classes (ref #34132) --- .../src/Cadoles/CoreBundle/Command/SynchroCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ninegate-1.0/src/Cadoles/CoreBundle/Command/SynchroCommand.php b/src/ninegate-1.0/src/Cadoles/CoreBundle/Command/SynchroCommand.php index 362b2335..58711ec7 100644 --- a/src/ninegate-1.0/src/Cadoles/CoreBundle/Command/SynchroCommand.php +++ b/src/ninegate-1.0/src/Cadoles/CoreBundle/Command/SynchroCommand.php @@ -176,7 +176,7 @@ class SynchroCommand 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); } @@ -189,7 +189,7 @@ class SynchroCommand 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); }