N°8772 - Dashlet group by

This commit is contained in:
Eric Espie
2025-11-13 17:10:25 +01:00
parent 7733f13d14
commit f68082da96
2 changed files with 2 additions and 4 deletions

View File

@@ -151,7 +151,8 @@ class ModelReflectionRuntime extends ModelReflection
$aAttributes = array();
foreach (MetaModel::ListAttributeDefs($sClass) as $sAttCode => $oAttDef)
{
$sAttributeClass = get_class($oAttDef);
$oReflection = new ReflectionClass($oAttDef);
$sAttributeClass = $oReflection->getShortName();
if ($aScope != null)
{
foreach ($aScope as $sScopeClass)