From f24a87ce567f89bf9166ae041216d2eeaf8ff820 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 21 Jan 2007 22:31:20 +0000 Subject: [PATCH] Fonction mktime sous windows --- htdocs/lib/functions.inc.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/htdocs/lib/functions.inc.php b/htdocs/lib/functions.inc.php index 11fb9380b87..0aac4b34e3e 100644 --- a/htdocs/lib/functions.inc.php +++ b/htdocs/lib/functions.inc.php @@ -518,9 +518,6 @@ function dolibarr_print_date($time,$format='') $smin = $reg[5]; if ($syear < 1970 && isset($_SERVER["WINDIR"])) { - // Le formatage ne peut etre appliqué car windows ne supporte pas la fonction - // mktime si l'année est inférieur à 1970. On retourne un format fixe -// return "$syear-$smonth-$sday"; return strftime($format,dolibarr_mktime($shour,$smin,0,$smonth,$sday,$syear)); } else