From 7cc91aa8d44021d8da31a1a31de59df0944351b9 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 28 Mar 2005 13:52:40 +0000 Subject: [PATCH] Qual: Suppression de la fonction print_select_date au profit de son doublon (la methode select_date). Trad: Traduction des mois --- htdocs/commande/fiche.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/htdocs/commande/fiche.php b/htdocs/commande/fiche.php index 683d6b1db23..2ab97b01d8f 100644 --- a/htdocs/commande/fiche.php +++ b/htdocs/commande/fiche.php @@ -243,19 +243,18 @@ if ($_GET["action"] == 'create') print ''; print ''; - print "Date :"; - - print_date_select(time()); - + print ''.$langs->trans("Date").' :'; + $html->select_date() print ""; - print "Numéro :Provisoire"; + + print ''.$langs->trans("Ref").' :Provisoire'; print ''; print "Source :"; $html->select_array("source_id",$new_commande->sources,2); print ""; - print "Projet :"; + print ''.$langs->trans("Project").' :'; $proj = new Project($db); $html->select_array("projetid",$proj->liste_array($soc->id),0,1); print "";