dblayeroo : bug in GROUP BY : return the child object group by display content instead of nothing

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3948 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2017-09-18 12:35:33 +00:00
parent d622a1995a
commit 092a3153f7

View File

@@ -2148,8 +2148,17 @@ class dblayeroo
$this->sep.".".$o;
}
}
elseif ($this->displayColumn !== null)
{
foreach ($this->displayColumn as $name)
{
$localGroupBy[] = $this->displayConvert ($name, true);
}
}
else
$localGroupBy = $this->displayGet (true);
{
// Nothing to return if there is no groupBy and nothing to display
}
}
else
{