Fix #1063 SELECT list is not in GROUP BY in getModuleListByInstance

This commit is contained in:
Kijin Sung 2018-10-10 15:39:16 +09:00
parent d9178e91d6
commit c53e956ef7
2 changed files with 3 additions and 3 deletions

View file

@ -405,7 +405,7 @@ class menuAdminModel extends menu
{
foreach($output->data as $value)
{
if($value->instanceCount > 1)
if($value->instanceCount >= 1)
{
$moduleList[] = $value->module;
}