Compresse les fichiers de données

Corrige un problème dans la fonction getCoursesByUser lorsque le membre a un rôle inférieur à EDITOR
This commit is contained in:
Fred Tempez 2024-01-18 14:41:03 +01:00
parent cf0fb4df53
commit 4387dcda7a
2 changed files with 3 additions and 3 deletions

View File

@ -143,7 +143,7 @@ class JsonDb extends \Prowebcraft\Dot
public function save()
{
//$v = json_encode($this->data, JSON_UNESCAPED_UNICODE );
$v = json_encode($this->data, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT);
$v = json_encode($this->data, JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT);
$l = strlen($v);
$t = 0;
while ($t < 5) {

View File

@ -1438,8 +1438,8 @@ class common
case self::GROUP_MEMBER:
case self::GROUP_VISITOR:
foreach ($c as $courseId => $value) {
$students = $this->getData(['enrolment', $courseId, 'students']);
if (in_array($userId, $students) === false) {
$students = $this->getData(['enrolment', $courseId]);
if (is_array($students[$userId]) === false) {
unset($c[$courseId]);
}
}