diff --git a/htdocs/includes/menus/barre_top/default.php b/htdocs/includes/menus/barre_top/default.php
index f18fcd82d6b..364882c54d6 100644
--- a/htdocs/includes/menus/barre_top/default.php
+++ b/htdocs/includes/menus/barre_top/default.php
@@ -101,9 +101,13 @@ else
}
print '
';
-if ($conf->produit->enabled )
+if ($conf->produit->enabled || $conf->service->enabled)
{
- print 'Produits';
+ $chaine="";
+ if ($conf->produit->enabled) { $chaine.="Produits"; }
+ if ($conf->produit->enabled && $conf->service->enabled) { $chaine.="/"; }
+ if ($conf->service->enabled) { $chaine.="Services"; }
+ print ''.$chaine.'';
}
else
{
|