Skip to content
Snippets Groups Projects
Commit d0af692e authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: date must be reported according to user timezone

Conflicts:
	htdocs/core/class/html.formfile.class.php
parent 16d530b2
No related branches found
No related tags found
No related merge requests found
...@@ -483,7 +483,7 @@ class FormFile ...@@ -483,7 +483,7 @@ class FormFile
// Show file date // Show file date
$date=(! empty($file['date'])?$file['date']:dol_filemtime($filedir."/".$file["name"])); $date=(! empty($file['date'])?$file['date']:dol_filemtime($filedir."/".$file["name"]));
$out.= '<td align="right" nowrap="nowrap">'.dol_print_date($date, 'dayhour').'</td>'; $out.= '<td align="right" nowrap="nowrap">'.dol_print_date($date, 'dayhour', 'tzuser').'</td>';
if ($delallowed) if ($delallowed)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment