diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-08-22 22:34:33 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-08-22 22:34:33 -0400 |
commit | b944b44dcadfdf2958bf3b4a943c751a7091f7ac (patch) | |
tree | 6fc1f708361644f27b38197673b0659965bfb6c4 /app/Template/board/task_private.php | |
parent | 312dfbb89e287432ba108b448fbc036e7fda4e27 (diff) |
Do not force redirect when clicking on task board link
Diffstat (limited to 'app/Template/board/task_private.php')
-rw-r--r-- | app/Template/board/task_private.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/Template/board/task_private.php b/app/Template/board/task_private.php index 564fd176..55c27b81 100644 --- a/app/Template/board/task_private.php +++ b/app/Template/board/task_private.php @@ -17,9 +17,7 @@ <?= $this->e($this->user->getInitials($task['assignee_name'] ?: $task['assignee_username'])) ?> </span> - <?php endif ?> - <span class="tooltip" title="<?= $this->e($task['title']) ?>" - <?= $this->url->link($this->e($task['title']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'task-board-collapsed-title') ?> - </span> + <?= $this->url->link($this->e($task['title']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'task-board-collapsed-title tooltip', $this->e($task['title'])) ?> </div> <?php else: ?> <div class="task-board-expanded"> |