Fix Array to String conversion in QueryBuilder
Fixes #9080 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
3e390a3451
commit
ab04f3cb19
1 changed files with 1 additions and 1 deletions
|
@ -813,7 +813,7 @@ class QueryBuilder implements IQueryBuilder {
|
|||
*/
|
||||
public function groupBy(...$groupBys) {
|
||||
if (count($groupBys) === 1 && is_array($groupBys[0])) {
|
||||
$$groupBys = $groupBys[0];
|
||||
$groupBys = $groupBys[0];
|
||||
}
|
||||
|
||||
call_user_func_array(
|
||||
|
|
Loading…
Reference in a new issue