diff options
Diffstat (limited to 'app/Helper')
-rw-r--r-- | app/Helper/Layout.php | 2 |
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); } |