Bugfix dans les url des onglets

This commit is contained in:
Rodolphe Quiedeville 2004-12-10 11:28:07 +00:00
parent 9f95909db5
commit 0cdcbdd1f6

View File

@ -41,19 +41,19 @@ $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';
$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");
$hselected=$h;
$h++;