fix: [attribute] `only_full_group_by` fixed for `__getCDIRList`.

Fix #6218
pull/6541/head
mokaddem 2020-11-06 08:36:07 +01:00
parent 106fa7300a
commit 3efaffdefc
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 1 additions and 1 deletions

View File

@ -3947,7 +3947,7 @@ class Attribute extends AppModel
'value1 LIKE' => '%/%'
),
'fields' => array('value1'),
'group' => 'value1', // return just unique value
'group' => array('value1', 'id'), // return just unique value
'order' => false
));
}