summaryrefslogtreecommitdiff
path: root/app/Helper
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-02-03 20:53:07 -0500
committerFrederic Guillot <fred@kanboard.net>2016-02-03 20:53:07 -0500
commit346151e103431e8de12520b26daae10676b8faf5 (patch)
treebc74ec361007a2567d68372b3a16d57ff5aa560c /app/Helper
parent6d388ec48d04481883aeb08b3aa4cbb9063ce3a4 (diff)
Add dropdown menu with inline popup for all task actions
Diffstat (limited to 'app/Helper')
-rw-r--r--app/Helper/Layout.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Helper/Layout.php b/app/Helper/Layout.php
index 8c00a311..3db23920 100644
--- a/app/Helper/Layout.php
+++ b/app/Helper/Layout.php
@@ -60,7 +60,7 @@ class Layout extends Base
*/
public function task($template, array $params)
{
- $params['title'] = '#'.$params['task']['id'].' '.$params['task']['title'];
+ $params['title'] = $params['task']['title'];
return $this->subLayout('task/layout', 'task/sidebar', $template, $params);
}