diff --git a/modules/notes/notes.php b/modules/notes/notes.php index c93db06fbe643f189ce4b73aa47d510b4d63342f..685fc1f2f0b2db130c8409a3a717e0df2ef7ed8d 100644 --- a/modules/notes/notes.php +++ b/modules/notes/notes.php @@ -261,7 +261,12 @@ if (isset($_REQUEST['load'])) { if (!empty($tabEntityLabel)) { $allEntities = implode(' - ', $tabEntityLabel); - $allEntitiesId = implode('<br/>', $tabEntityId); + if(count($tabEntityId) > 3){ + $allEntitiesId = $tabEntityId[0] .'<br/>'.$tabEntityId[1].'<br/>'.$tabEntityId[2].'<br/>...'; + }else{ + $allEntitiesId = implode('<br/>', $tabEntityId); + } + }