Skip to content

Commit

Permalink
Include timezone information for full date
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Jul 22, 2014
1 parent f133709 commit 751054c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imp/lib/Mailbox/Ui.php
Expand Up @@ -159,7 +159,7 @@ public function getDate($date, $format = 0)
/* Not today, use the date. */
if ($format & self::DATE_FULL) {
return strftime($GLOBALS['prefs']->getValue('date_format'), $udate) .
' [' . strftime($GLOBALS['prefs']->getValue('time_format'), $udate) . ']';
' [' . strftime($GLOBALS['prefs']->getValue('time_format') . ' %Z', $udate) . ']';
}

return strftime($GLOBALS['prefs']->getValue('date_format_mini'), $udate);
Expand Down

0 comments on commit 751054c

Please sign in to comment.