From 636140bfdda1696403e38710a41e9725fdfc9d70 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Sat, 14 May 2016 17:02:26 +0000 Subject: [PATCH] Display the dates of the history according to the date/time format defined for this language. SVN:trunk[4085] --- application/displayblock.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/displayblock.class.inc.php b/application/displayblock.class.inc.php index 1d03917db..042e7a285 100644 --- a/application/displayblock.class.inc.php +++ b/application/displayblock.class.inc.php @@ -1280,7 +1280,7 @@ EOF $aValues = array(); foreach($aChanges as $aChange) { - $aValues[] = array('date' => $aChange['date'], 'userinfo' => htmlentities($aChange['userinfo'], ENT_QUOTES, 'UTF-8'), 'log' => ""); + $aValues[] = array('date' => AttributeDateTime::GetFormat()->Format($aChange['date']), 'userinfo' => htmlentities($aChange['userinfo'], ENT_QUOTES, 'UTF-8'), 'log' => ""); } $sHtml .= $oPage->GetTable($aAttribs, $aValues); return $sHtml;