From 3909814313f32c75e1957554678b1787e8674be9 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Fri, 9 Jun 2017 18:29:25 -0400 Subject: Remove checkbox to simplify task mail form --- app/Controller/TaskMailController.php | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'app/Controller/TaskMailController.php') diff --git a/app/Controller/TaskMailController.php b/app/Controller/TaskMailController.php index 64b81f8f..feb96a68 100644 --- a/app/Controller/TaskMailController.php +++ b/app/Controller/TaskMailController.php @@ -35,13 +35,11 @@ class TaskMailController extends BaseController $this->sendByEmail($values, $task); $this->flash->success(t('Task sent by email successfully.')); - if (isset($values['add_comment']) && $values['add_comment'] == 1) { - $this->commentModel->create(array( - 'comment' => t('This task was sent by email to "%s" with subject "%s".', $values['email'], $values['subject']), - 'user_id' => $this->userSession->getId(), - 'task_id' => $task['id'], - )); - } + $this->commentModel->create(array( + 'comment' => t('This task was sent by email to "%s" with subject "%s".', $values['email'], $values['subject']), + 'user_id' => $this->userSession->getId(), + 'task_id' => $task['id'], + )); $this->response->redirect($this->helper->url->to('TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), 'comments'), true); } else { -- cgit v1.2.3