From cf426a49bec20f0ef487046f77f363db87e3a95d Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 3 Sep 2013 09:38:45 -0400 Subject: [PATCH] Fix for ampersand bug. Resolves VUFIND-880. --- module/VuFind/src/VuFind/Controller/CombinedController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/VuFind/src/VuFind/Controller/CombinedController.php b/module/VuFind/src/VuFind/Controller/CombinedController.php index bade60b4624..40a47f336a2 100644 --- a/module/VuFind/src/VuFind/Controller/CombinedController.php +++ b/module/VuFind/src/VuFind/Controller/CombinedController.php @@ -162,8 +162,8 @@ class CombinedController extends AbstractSearch $route = $this->getServiceLocator() ->get('VuFind\SearchOptionsPluginManager') ->get($searchClassId)->getSearchAction(); - $options = array('query' => $params); - return $this->redirect()->toRoute($route, array(), $options); + $base = $this->url()->fromRoute($route); + return $this->redirect()->toUrl($base . '?' . http_build_query($params)); case 'External': $lookfor = $this->params()->fromQuery('lookfor'); return $this->redirect()->toUrl($target . urlencode($lookfor)); -- GitLab