From 56ff0580a1053352499d2fab46f37d53cd4c454d Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Wed, 10 Apr 2024 18:59:41 +0200 Subject: [PATCH] =?UTF-8?q?cr=C3=A9ation=20du=20CS=20sans=20courseID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/class/router.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/class/router.class.php b/core/class/router.class.php index a804b9a..3d6e3ca 100644 --- a/core/class/router.class.php +++ b/core/class/router.class.php @@ -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); }