Remove project_id from task links

A few were missed in #4892, this lets URL rewriting work everywhere it should
This commit is contained in:
Sam Edwards
2023-07-13 17:42:53 -07:00
committed by Frédéric Guillot
parent a39cc49035
commit b5e2061359
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
<form method="post" action="<?= $this->url->href('TaskModificationController', 'update', array('task_id' => $task['id'], 'project_id' => $project['id'])) ?>">
<form method="post" action="<?= $this->url->href('TaskModificationController', 'update', array('task_id' => $task['id'])) ?>">
<?= $this->form->csrf() ?>
<?= $this->form->hidden('id', $values) ?>
<?= $this->form->hidden('project_id', $values) ?>