Merge pull request #16421 from dvdwalker/develop

Minor Typo on tooltip class prenventing correct format to show
This commit is contained in:
Laurent Destailleur 2021-02-26 13:17:26 +01:00 committed by GitHub
commit 0c23deb2e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4590,7 +4590,7 @@ class Product extends CommonObject
$result .= (img_object(($notooltip ? '' : $label), 'product', ($notooltip ? 'class="paddingright"' : 'class="paddingright classfortooltip"'), 0, 0, $notooltip ? 0 : 1));
}
if ($this->type == Product::TYPE_SERVICE) {
$result .= (img_object(($notooltip ? '' : $label), 'service', ($notooltip ? 'class="paddinright"' : 'class="paddingright classfortooltip"'), 0, 0, $notooltip ? 0 : 1));
$result .= (img_object(($notooltip ? '' : $label), 'service', ($notooltip ? 'class="paddingright"' : 'class="paddingright classfortooltip"'), 0, 0, $notooltip ? 0 : 1));
}
}
$result .= $newref;