remove localtime as it uses server timezone

This commit is contained in:
simon lehericey 2018-10-25 20:25:43 +00:00
parent 9475795143
commit 3dad743d56
11 changed files with 15 additions and 15 deletions

View file

@ -126,7 +126,7 @@ module TagsSubstitutionConcern
def format_date(date)
if date.present?
date.localtime.strftime('%d/%m/%Y')
date.strftime('%d/%m/%Y')
else
''
end