création du CS sans courseID

This commit is contained in:
Fred Tempez 2024-04-10 18:59:41 +02:00
parent 5b9f86fb38
commit 56ff0580a1
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ class core extends common
// Stocke le rapport en CSV
$file = fopen(self::DATA_DIR . self::$siteContent . '/report.csv', 'a+');
fputcsv($file, [ self::$siteContent, $this->getUser('id'), $this->getUrl(0) ,time()], ';');
fputcsv($file, [ $this->getUser('id'), $this->getUrl(0) ,time()], ';');
fclose($file);
}