diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-08 21:21:36 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-08 21:21:36 -0400 |
commit | 3ebeddc1c79a1931182d071102979283a3f01d52 (patch) | |
tree | 5c5c4a67598cf67707ea1d9c2e16a09c5e59318d /templates/project_tasks.php | |
parent | 6551c9ce4c169100f55ec6912233f8e627a5cc05 (diff) |
Fix a typo and minor visual improvement
Diffstat (limited to 'templates/project_tasks.php')
-rw-r--r-- | templates/project_tasks.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/project_tasks.php b/templates/project_tasks.php index 5b3125f8..77b4db62 100644 --- a/templates/project_tasks.php +++ b/templates/project_tasks.php @@ -25,13 +25,13 @@ <?php foreach ($tasks as $task): ?> <tr> <td class="task task-<?= $task['color_id'] ?>"> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('Show this task') ?>"><?= Helper\escape($task['id']) ?></a> + <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>"><?= Helper\escape($task['id']) ?></a> </td> <td> <?= Helper\escape($task['column_title']) ?> </td> <td> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('Show this task') ?>"><?= Helper\escape($task['title']) ?></a> + <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>"><?= Helper\escape($task['title']) ?></a> </td> <td> <?= Helper\escape($task['username']) ?> |