From 8d0475e8be5090d8d5096ce7ad4f88dc66dab43f Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 31 Dec 2010 11:00:54 +0000 Subject: [PATCH] Fix: Date format --- htdocs/comm/clients.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/comm/clients.php b/htdocs/comm/clients.php index c84634ebaf2..fb387011006 100644 --- a/htdocs/comm/clients.php +++ b/htdocs/comm/clients.php @@ -181,7 +181,7 @@ if ($result) print ' '.stripslashes($obj->nom).''; print ''.$obj->ville.''; print ''.$obj->code_client.''; - print ''.dol_print_date($db->jdate($obj->datec)).''; + print ''.dol_print_date($db->jdate($obj->datec),'day').''; print "\n"; $i++; }