Skip to content

Commit

Permalink
see cl V
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Patzer committed Dec 5, 2019
1 parent 061b4e3 commit 6d14545
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.9.11] - 2019-12-05

- fixed group by issue for multilingual

## [1.9.10] - 2019-12-04

- fixed group by issue for multilingual
Expand Down
4 changes: 2 additions & 2 deletions src/Lists/DefaultList.php
Expand Up @@ -223,8 +223,8 @@ public function parse(string $listTemplate = null, string $itemTemplate = null,
}
}

$fields = implode(', ', array_map(function ($val) use ($filter) {
return 'ANY_VALUE('.$val.') AS "'.str_replace($filter->dataContainer.'.', '', $val).'"';
$fields = implode(', ', array_map(function ($val) use ($filter, $suffixedTable) {
return 'ANY_VALUE('.$val.') AS "'.str_replace([$filter->dataContainer.'.', $suffixedTable.'.'], '', $val).'"';
}, $fieldNames));

// add support for dc multilingual utils
Expand Down

0 comments on commit 6d14545

Please sign in to comment.