Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic34 committed Nov 13, 2024
1 parent c82f9ce commit 779eb44
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ public function get_substitutionarray_tasks($task, $outputlangs, $array_key = 't
'task_public' => $task->public,
'task_date_start' => dol_print_date($task->date_start, 'day'),
'task_date_end' => dol_print_date($task->date_end, 'day'),
'task_note_private' => $task->note_private,
'task_note_public' => $task->note_public
'task_note_private' => (string) $task->note_private,
'task_note_public' => (string) $task->note_public
);

// Retrieve extrafields
Expand Down

0 comments on commit 779eb44

Please sign in to comment.