Remove project_id from task URLs
This commit is contained in:
@@ -28,7 +28,7 @@ class SubtaskTimeTrackingCalendarFormatter extends BaseFormatter implements Form
|
||||
'backgroundColor' => $this->colorModel->getBackgroundColor($row['color_id']),
|
||||
'borderColor' => $this->colorModel->getBorderColor($row['color_id']),
|
||||
'textColor' => 'black',
|
||||
'url' => $this->helper->url->to('TaskViewController', 'show', array('task_id' => $row['task_id'], 'project_id' => $row['project_id'])),
|
||||
'url' => $this->helper->url->to('TaskViewController', 'show', array('task_id' => $row['task_id'])),
|
||||
'editable' => false,
|
||||
);
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ class TaskApiFormatter extends BaseFormatter implements FormatterInterface
|
||||
public function format()
|
||||
{
|
||||
if (! empty($this->task)) {
|
||||
$this->task['url'] = $this->helper->url->to('TaskViewController', 'show', array('task_id' => $this->task['id'], 'project_id' => $this->task['project_id']), '', true);
|
||||
$this->task['url'] = $this->helper->url->to('TaskViewController', 'show', array('task_id' => $this->task['id']), '', true);
|
||||
$this->task['color'] = $this->colorModel->getColorProperties($this->task['color_id']);
|
||||
}
|
||||
|
||||
|
||||
@@ -128,7 +128,7 @@ class TaskICalFormatter extends BaseFormatter implements FormatterInterface
|
||||
$vEvent->setSummary(t('#%d', $task['id']).' '.$task['title']);
|
||||
$vEvent->setDescription($task['description']);
|
||||
$vEvent->setDescriptionHTML($this->helper->text->markdown($task['description']));
|
||||
$vEvent->setUrl($this->helper->url->base().$this->helper->url->to('TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])));
|
||||
$vEvent->setUrl($this->helper->url->base().$this->helper->url->to('TaskViewController', 'show', array('task_id' => $task['id'])));
|
||||
|
||||
if (! empty($task['owner_id'])) {
|
||||
$attendees = new Attendees;
|
||||
|
||||
Reference in New Issue
Block a user