From b50bb4c26c7d50192916b432915c1bd1633a5a6f Mon Sep 17 00:00:00 2001 From: Dave Lawrence Date: Wed, 6 Mar 2013 13:21:37 -0500 Subject: Bug 848271 - 'Assigned to You' section says 'in the future' for bug last updated time --- extensions/MyDashboard/lib/Queries.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'extensions/MyDashboard/lib/Queries.pm') diff --git a/extensions/MyDashboard/lib/Queries.pm b/extensions/MyDashboard/lib/Queries.pm index b4d80e2f2..e8813989b 100644 --- a/extensions/MyDashboard/lib/Queries.pm +++ b/extensions/MyDashboard/lib/Queries.pm @@ -238,8 +238,9 @@ sub query_flags { { Slice => {} }, $user->login); } - # Add the fancy date + # Format the created date specific to the user's timezone and add the fancy version foreach my $flag (@$flags) { + $flag->{'created'} = format_time($flag->{'created'}, '%Y-%m-%d %H:%M'); my $date_then = datetime_from($flag->{'created'}); $flag->{'created_fancy'} = time_ago($date_then, $date_now); } -- cgit v1.2.3-24-g4f1b