Remove project_id from task URLs
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
</p>
|
||||
<?php endif ?>
|
||||
|
||||
<form method="post" action="<?= $this->url->href('SubtaskController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off">
|
||||
<form method="post" action="<?= $this->url->href('SubtaskController', 'save', array('task_id' => $task['id'])) ?>" autocomplete="off">
|
||||
<?= $this->form->csrf() ?>
|
||||
|
||||
<?= $this->subtask->renderBulkTitleField($values, $errors, array('autofocus')) ?>
|
||||
@@ -20,7 +20,7 @@
|
||||
<?= $this->subtask->renderTimeEstimatedField($values, $errors) ?>
|
||||
|
||||
<?= $this->hook->render('template:subtask:form:create', array('values' => $values, 'errors' => $errors)) ?>
|
||||
|
||||
|
||||
<?= $this->form->checkbox('another_subtask', t('Create another sub-task'), 1, isset($values['another_subtask']) && $values['another_subtask'] == 1) ?>
|
||||
|
||||
<?= $this->modal->submitButtons() ?>
|
||||
|
||||
Reference in New Issue
Block a user