From ebf1ed5fa3d4902ab732c1e4683911f39af1f4e6 Mon Sep 17 00:00:00 2001 From: chiu Date: Thu, 3 Sep 2020 15:49:00 +0800 Subject: [PATCH] Fix date format in show page. --- app/controllers/announcements_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/announcements_controller.rb b/app/controllers/announcements_controller.rb index d6314ae..d059e10 100644 --- a/app/controllers/announcements_controller.rb +++ b/app/controllers/announcements_controller.rb @@ -263,7 +263,7 @@ class AnnouncementsController < ApplicationController "title" => announcement.title, "subtitle_ann" => subtitle_ann, "update_user" => update_user, - "updated_at" => announcement.postdate.strftime('%Y-%m-%d %H:%M'), + "updated_at" => announcement.postdate.in_time_zone(Time.zone.utc_offset / 3600).strftime('%Y-%m-%d %H:%M'), "body" =>announcement.text, "image" => announcement.image.url, "img_src" => img_src, @@ -334,7 +334,7 @@ class AnnouncementsController < ApplicationController "title" => announcement["title_translations"][locale], "subtitle_ann" => subtitle_ann, "update_user" => update_user, - "updated_at" => datetime.strftime('%Y-%m-%d %H:%M'), + "updated_at" => datetime.in_time_zone(Time.zone.utc_offset / 3600).strftime('%Y-%m-%d %H:%M'), "body" => announcement["text_translations"][locale], "image" => announcement["image"]["original"], "img_src" => img_src,