Skip to content

Commit 4111bdb

Browse files
authored
Merge pull request #53458 from nextcloud/fix-putcsv-default
fix(profiler): set default values for fputcsv arguments to avoid depreciation warning
2 parents 247b254 + 4515974 commit 4111bdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/private/Profiler/FileProfilerStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public function write(IProfile $profile): bool {
161161
$profile->getTime(),
162162
$profile->getParentToken(),
163163
$profile->getStatusCode(),
164-
]);
164+
], escape: '');
165165
fclose($file);
166166
}
167167

0 commit comments

Comments
 (0)