diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-07-01 12:33:18 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-07-01 12:33:18 -0400 |
commit | abdfa46cfcc06175dea10b5e285fe5b2331b6ead (patch) | |
tree | 0303dc234f542acd4273e9b8b304577ea21ba19e /app/Console | |
parent | 662506941f6ad00be535c3d854f3500bc12676de (diff) |
Fixed empty title for web notification with only one overdue task
Diffstat (limited to 'app/Console')
-rw-r--r-- | app/Console/TaskOverdueNotificationCommand.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Console/TaskOverdueNotificationCommand.php b/app/Console/TaskOverdueNotificationCommand.php index 225a6a1a..36276615 100644 --- a/app/Console/TaskOverdueNotificationCommand.php +++ b/app/Console/TaskOverdueNotificationCommand.php @@ -149,7 +149,7 @@ class TaskOverdueNotificationCommand extends BaseCommand $this->userNotificationModel->sendUserNotification( $user, TaskModel::EVENT_OVERDUE, - array('tasks' => $user_tasks, 'project_name' => implode(", ", $project_names)) + array('tasks' => $user_tasks, 'project_name' => implode(', ', $project_names)) ); } } |