Always display project name and task title in task views

This commit is contained in:
Frederic Guillot
2016-03-08 22:02:42 -05:00
parent d4eea1e252
commit f91f3214c1
21 changed files with 70 additions and 31 deletions

View File

@@ -60,7 +60,7 @@ class LayoutHelper extends Base
*/
public function task($template, array $params)
{
$params['title'] = $params['task']['title'];
$params['title'] = $params['task']['project_name'];
return $this->subLayout('task/layout', 'task/sidebar', $template, $params);
}