Bugfix sur les urls dans les onglets

This commit is contained in:
Rodolphe Quiedeville 2004-12-10 11:27:16 +00:00
parent c07e1479c3
commit 9f95909db5

View File

@ -66,20 +66,20 @@ $contact->fetch($_GET["id"], $user);
$h=0;
$head[$h][0] = DOL_URL_ROOT.'fiche.php?id='.$_GET["id"];
$head[$h][0] = DOL_URL_ROOT.'/contact/fiche.php?id='.$_GET["id"];
$head[$h][1] = "Général";
$h++;
$head[$h][0] = DOL_URL_ROOT.'perso.php?id='.$_GET["id"];
$head[$h][0] = DOL_URL_ROOT.'/contact/perso.php?id='.$_GET["id"];
$head[$h][1] = 'Informations personnelles';
$hselected=$h;
$h++;
$head[$h][0] = DOL_URL_ROOT.'vcard.php?id='.$_GET["id"];
$head[$h][0] = DOL_URL_ROOT.'/contact/vcard.php?id='.$_GET["id"];
$head[$h][1] = $langs->trans("VCard");
$h++;
$head[$h][0] = DOL_URL_ROOT.'info.php?id='.$_GET["id"];
$head[$h][0] = DOL_URL_ROOT.'/contact/info.php?id='.$_GET["id"];
$head[$h][1] = $langs->trans("Info");
$h++;