diff --git a/htdocs/compta/stats/cabyuser.php b/htdocs/compta/stats/cabyuser.php
index 04e46e72e1b..abc49677d18 100644
--- a/htdocs/compta/stats/cabyuser.php
+++ b/htdocs/compta/stats/cabyuser.php
@@ -497,10 +497,10 @@ if (count($amount)) {
// Other stats
print '
';
- if (!empty($conf->propal->enabled) && $key > 0) {
+ if (isModEnabled('propal') && $key > 0) {
print ' '.img_picto($langs->trans("ProposalStats"), "stats").' ';
}
- if (!empty($conf->commande->enabled) && $key > 0) {
+ if (isModEnabled('commande') && $key > 0) {
print ' '.img_picto($langs->trans("OrderStats"), "stats").' ';
}
if (isModEnabled('facture') && $key > 0) {
|