Skip to content

Commit af610dc

Browse files
cconard96cedric-anne
authored andcommitted
fix id join char
1 parent 53aa907 commit af610dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Api/HL/Search.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ private function getSelectCriteriaForProperty(string $prop_name, bool $distinct_
111111
if (array_key_exists($join_name, $this->joins) && $this->joins[$join_name]['parent_type'] === 'array') {
112112
$expression = QueryFunction::ifnull($sql_field, new QueryExpression('0x0'));
113113
if ($distinct_groups) {
114-
$expression = QueryFunction::groupConcat($expression, new QueryExpression('0x1D'), true);
114+
$expression = QueryFunction::groupConcat($expression, new QueryExpression(chr(0x1D)), true);
115115
} else {
116-
$expression = QueryFunction::groupConcat($expression, new QueryExpression('0x1D'), false);
116+
$expression = QueryFunction::groupConcat($expression, new QueryExpression(chr(0x1D)), false);
117117
}
118118
}
119119
}

0 commit comments

Comments
 (0)