Fixed issues with an undefined property

This commit is contained in:
Graham Campbell
2015-01-05 12:00:24 +00:00
parent 8b631ca79d
commit a43e96805a

View File

@@ -30,10 +30,11 @@ class DashComponentController extends Controller
'active' => false,
],
];
$this->subTitle = trans_choice('dashboard.components.components', 2);
View::share('subTitle', $this->subTitle);
View::share('subMenu', $this->subMenu);
$subTitle = trans_choice('dashboard.components.components', 2);
View::share('subTitle', $subTitle);
View::share('subMenu', $subMenu);
}
/**