From abdfa46cfcc06175dea10b5e285fe5b2331b6ead Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Fri, 1 Jul 2016 12:33:18 -0400 Subject: Fixed empty title for web notification with only one overdue task --- app/Console/TaskOverdueNotificationCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Console') 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)) ); } } -- cgit v1.2.3