From cccb34e98c88d657305ad324e5e012f1d8e80893 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Thu, 23 Jul 2015 12:58:53 +0200 Subject: [PATCH] Pass authenticated user to the SearchDashboard refs #9644 --- application/controllers/SearchController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/application/controllers/SearchController.php b/application/controllers/SearchController.php index 3816eb3e8..aa5cfaf9d 100644 --- a/application/controllers/SearchController.php +++ b/application/controllers/SearchController.php @@ -12,7 +12,9 @@ class SearchController extends ActionController { public function indexAction() { - $this->view->dashboard = SearchDashboard::search($this->params->get('q')); + $searchDashboard = new SearchDashboard(); + $searchDashboard->setUser($this->Auth()->getUser()); + $this->view->dashboard = $searchDashboard->search($this->params->get('q')); // NOTE: This renders the dashboard twice. Remove this once we can catch exceptions thrown in view scripts. $this->view->dashboard->render();