Qual: Utilisation de dolibarr_print_date chaque fois que c'est possible au lieu de strftime

This commit is contained in:
Laurent Destailleur
2007-08-08 15:14:52 +00:00
parent af929b1dc2
commit 119070e3ab
70 changed files with 83 additions and 87 deletions

View File

@@ -63,7 +63,7 @@ class Commande {
$this->payment_method = stripslashes($array["payment_method"]);
$this->date = strftime("%d/%m/%Y %H:%M",$array["date_purchased"]);
$this->date = dolibarr_print_date($array["date_purchased"],'dayhour');
$this->delivery_adr->name = stripslashes($array["delivery_name"]);
$this->delivery_adr->street = stripslashes($array["delivery_street_address"]);