diff --git a/htdocs/fourn/fiche.php b/htdocs/fourn/fiche.php index 41917239353..6f03864e272 100644 --- a/htdocs/fourn/fiche.php +++ b/htdocs/fourn/fiche.php @@ -43,7 +43,7 @@ $societe = new Societe($db); if ( $societe->fetch($socid) ) { - $head[0][0] = 'soc.php?socid='.$societe->id; + $head[0][0] = DOL_URL_ROOT.'/soc.php?socid='.$societe->id; $head[0][1] = "Fiche société"; $h = 1; @@ -58,7 +58,7 @@ if ( $societe->fetch($socid) ) dolibarr_fiche_head($head, $a); - print_titre("Fiche fournisseur : $societe->nom"); + print_titre($societe->nom); /* * @@ -70,8 +70,8 @@ if ( $societe->fetch($socid) ) * */ print '
| Tél | '.$societe->tel.' | fax | '.$societe->fax.' |
| Adresse | '.nl2br($societe->address).' '.$societe->cp.' '.$societe->ville.' | ||
| Tél | '.dolibarr_print_phone($societe->tel).' | fax | '.dolibarr_print_phone($societe->fax).' |
| Adresse | '.nl2br($societe->adresse).' '.$societe->cp.' '.$societe->ville.' | ||