fix bad merge happened cause last rebase (?)

This commit is contained in:
Jean-Yves Gaulier
2020-02-10 21:15:02 +01:00
parent eeec1ab716
commit 4f7be4c0a9

View File

@@ -76,7 +76,7 @@ class ElasticsearchOptions
$self->setPopulateOrder($options['populate_order']);
$self->setPopulateDirection($options['populate_direction']);
$self->setActiveTab($options['activeTab']);
foreach($options['aggregates'] as $fieldname=>$attributes) {
foreach($options['facets'] as $fieldname=>$attributes) {
$self->setAggregableField($fieldname, $attributes);
}
@@ -99,7 +99,7 @@ class ElasticsearchOptions
'populate_order' => $this->populateOrder,
'populate_direction' => $this->populateDirection,
'activeTab' => $this->activeTab,
'aggregates' => []
'facets' => []
];
foreach($this->getAggregableFields() as $fieldname=>$attributes) {
$ret['facets'][$fieldname] = $attributes;