diff options
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/board/show.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/board/show.php b/app/Template/board/show.php index 66e8b46d..142969c9 100644 --- a/app/Template/board/show.php +++ b/app/Template/board/show.php @@ -9,7 +9,7 @@ <?php foreach ($board as $column): ?> <th width="<?= $column_with ?>%"> <div class="board-add-icon"> - <?= Helper\a('+', 'task', 'create', array('project_id' => $column['project_id'], 'column_id' => $column['id']), false, '', t('Add a new task')) ?> + <?= Helper\a('+', 'task', 'create', array('project_id' => $column['project_id'], 'column_id' => $column['id']), false, 'task-creation-popover', t('Add a new task')) ?> </div> <?= Helper\escape($column['title']) ?> <?php if ($column['task_limit']): ?> |