diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-09-01 20:40:02 -0800 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-09-01 20:40:02 -0800 |
commit | 457e181ffb915e36e5da77317a6c824e10f5d5b3 (patch) | |
tree | eb5443ac4cdbd92278359fcd15d888752c70bc77 /app/Templates/task_sidebar.php | |
parent | e6d0658a0eedeb6a641c003d1c492af0f9a7502c (diff) |
Improve task duplication
Diffstat (limited to 'app/Templates/task_sidebar.php')
-rw-r--r-- | app/Templates/task_sidebar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Templates/task_sidebar.php b/app/Templates/task_sidebar.php index 43170aa6..5d93d7b1 100644 --- a/app/Templates/task_sidebar.php +++ b/app/Templates/task_sidebar.php @@ -9,8 +9,8 @@ <li><a href="?controller=comment&action=create&task_id=<?= $task['id'] ?>"><?= t('Add a comment') ?></a></li> <li><a href="?controller=file&action=create&task_id=<?= $task['id'] ?>"><?= t('Attach a document') ?></a></li> <li><a href="?controller=task&action=duplicate&project_id=<?= $task['project_id'] ?>&task_id=<?= $task['id'] ?>"><?= t('Duplicate') ?></a></li> - <li><a href="?controller=task&action=move&project_id=<?= $task['project_id'] ?>&task_id=<?= $task['id'] ?>"><?= t('Move to another project') ?></a></li> <li><a href="?controller=task&action=copy&project_id=<?= $task['project_id'] ?>&task_id=<?= $task['id'] ?>"><?= t('Duplicate to another project') ?></a></li> + <li><a href="?controller=task&action=move&project_id=<?= $task['project_id'] ?>&task_id=<?= $task['id'] ?>"><?= t('Move to another project') ?></a></li> <li> <?php if ($task['is_active'] == 1): ?> <a href="?controller=task&action=confirmClose&task_id=<?= $task['id'] ?>"><?= t('Close this task') ?></a> |