mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #9081 from nextcloud/bugfix/9080/groupby_typo
Fix Array to String conversion in QueryBuilder
This commit is contained in:
commit
feef3cbba0
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