diff options
author | Thomas Citharel <tcit@tcit.fr> | 2025-06-12 18:21:07 +0200 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2025-06-16 17:26:16 +0200 |
commit | ba7625fb43526e9dfe8484224c4e3c5b97442e16 (patch) | |
tree | 27253854f78ca6304aed200e037af26d0e73b18c | |
parent | 0450ce9ed497b666067dba6e20c45e7d73f6f97a (diff) | |
download | nextcloud-server-fix-putcsv-default.tar.gz nextcloud-server-fix-putcsv-default.zip |
fix(profiler): set default values for fputcsv arguments to avoid depreciation warningfix-putcsv-default
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
-rw-r--r-- | lib/private/Profiler/FileProfilerStorage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Profiler/FileProfilerStorage.php b/lib/private/Profiler/FileProfilerStorage.php index cd45090e7ca..7087ffca7ff 100644 --- a/lib/private/Profiler/FileProfilerStorage.php +++ b/lib/private/Profiler/FileProfilerStorage.php @@ -161,7 +161,7 @@ class FileProfilerStorage { $profile->getTime(), $profile->getParentToken(), $profile->getStatusCode(), - ]); + ], ',', '"', ''); fclose($file); } |