2
0
forked from Wavyzz/dolibarr

Fix warning

This commit is contained in:
Laurent Destailleur
2023-10-28 02:17:48 +02:00
parent 20f4051a4b
commit 00e706120d

View File

@@ -11374,8 +11374,10 @@ function dolGetButtonAction($label, $text = '', $actionType = 'default', $url =
// If $url is an array, we must build a dropdown button
if (is_array($url)) {
$out = '';
if (count($url) > 1) {
$out = '<div class="dropdown inline-block dropdown-holder">';
$out .= '<div class="dropdown inline-block dropdown-holder">';
$out .= '<a style="margin-right: auto;" class="dropdown-toggle classfortooltip butAction'.($userRight ? '' : 'Refused').'" title="'.dol_escape_htmltag($label).'" data-toggle="dropdown">'.($text ? $text : $label).'</a>';
$out .= '<div class="dropdown-content">';
foreach ($url as $subbutton) {