Skip to content

Commit

Permalink
chore: cast function argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jeabakker committed May 17, 2023
1 parent 255fb92 commit b751668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/event_manager/attendees/export.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

foreach ($rows as $row) {
$decoded_rows = array_map(function($row) {
return html_entity_decode($row);
return html_entity_decode((string) $row);
}, array_values($row));

fputcsv($fh, $decoded_rows, ';');
Expand Down

0 comments on commit b751668

Please sign in to comment.