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

@@ -92,7 +92,7 @@ class mod_commande_rubis extends ModeleNumRefCommandes
$current_month = date("n");
if($conf->global->SOCIETE_FISCAL_MONTH_START > 1 && $current_month >= $conf->global->SOCIETE_FISCAL_MONTH_START)
{
$yy = strftime("%y",mktime(0,0,0,date("m"),date("d"),date("Y")+1));
$yy = strftime("%y",dolibarr_mktime(0,0,0,date("m"),date("d"),date("Y")+1));
}
else
{