diff --git a/htdocs/comm/action/index.php b/htdocs/comm/action/index.php index 22968beeacf..ee81d65dd7a 100644 --- a/htdocs/comm/action/index.php +++ b/htdocs/comm/action/index.php @@ -117,7 +117,7 @@ if ($resql) $i = 0; print "
| '; if ($oldyear == strftime("%Y",$obj->dp) ) { + print ' | | | '; } else { - print strftime("%Y",$obj->dp)."-"; + print ''.strftime("%Y",$obj->dp).' | '; $oldyear = strftime("%Y",$obj->dp); } if ($oldmonth == strftime("%Y%m",$obj->dp) ) { + print '| | '; } else { - print strftime("%m",$obj->dp)."-"; + print ''.strftime("%b",$obj->dp).' | '; $oldmonth = strftime("%Y%m",$obj->dp); } if ($oldday == strftime("%Y%m%d",$obj->dp) ) { + print '| | '; } else { - print strftime("%d",$obj->dp)." "; + print ''.strftime("%d",$obj->dp).' | '; $oldday = strftime("%Y%m%d",$obj->dp); } - print strftime("%H:%M",$obj->dp); - print "\n"; - -// print ''.dolibarr_print_date($obj->dp)." | \n"; + print ''.strftime("%H:%M",$obj->dp).' | '; // Action (type) print ''; |