Skip to content
Snippets Groups Projects
Commit 485399c1 authored by Demian Katz's avatar Demian Katz
Browse files

Fixed bug -- incorrect parameter processing.

parent de4bb1d9
No related merge requests found
...@@ -104,8 +104,7 @@ class ExpandFacets implements RecommendInterface ...@@ -104,8 +104,7 @@ class ExpandFacets implements RecommendInterface
// Parse the additional settings: // Parse the additional settings:
$settings = explode(':', $settings); $settings = explode(':', $settings);
$mainSection = empty($settings[0]) ? 'Results' : $settings[0]; $mainSection = empty($settings[0]) ? 'Results' : $settings[0];
$checkboxSection = isset($settings[1]) ? $settings[1] : false; $iniName = isset($settings[1]) ? $settings[1] : 'facets';
$iniName = isset($settings[2]) ? $settings[2] : 'facets';
// Load the desired facet information... // Load the desired facet information...
$config = $this->configLoader->get($iniName); $config = $this->configLoader->get($iniName);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment