Skip to content

Commit 4cff16c

Browse files
authored
[5.4] Avoid fputcsv deprecation notice (#46423)
1 parent 3a8d986 commit 4cff16c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

administrator/components/com_actionlogs/src/Controller/ActionlogsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public function exportLogs()
110110
$output = fopen("php://output", "w");
111111

112112
foreach ($rows as $row) {
113-
fputcsv($output, $row, $csvDelimiter);
113+
fputcsv($output, $row, $csvDelimiter, escape: "");
114114
}
115115

116116
fclose($output);

0 commit comments

Comments
 (0)