diff options
author | Friendika <info@friendika.com> | 2011-03-31 14:46:16 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-31 14:46:16 -0700 |
commit | d728961cbf5ce3de7de65e37c900666e0f9f7358 (patch) | |
tree | 6fb362f08c9bea0a15a7c3451c5df7ebc042c37b /mod | |
parent | 08032e04536e67dbf488654a0142350690154c57 (diff) | |
download | volse-hubzilla-d728961cbf5ce3de7de65e37c900666e0f9f7358.tar.gz volse-hubzilla-d728961cbf5ce3de7de65e37c900666e0f9f7358.tar.bz2 volse-hubzilla-d728961cbf5ce3de7de65e37c900666e0f9f7358.zip |
translateable time formats (PM & birthdays)
Diffstat (limited to 'mod')
-rw-r--r-- | mod/message.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/message.php b/mod/message.php index 9d30abd66..7978ecaf2 100644 --- a/mod/message.php +++ b/mod/message.php @@ -235,7 +235,7 @@ function message_content(&$a) { '$delete' => t('Delete conversation'), '$body' => $rr['body'], '$to_name' => $rr['name'], - '$date' => datetime_convert('UTC',date_default_timezone_get(),$rr['mailcreated'],'D, d M Y - g:i A') + '$date' => datetime_convert('UTC',date_default_timezone_get(),$rr['mailcreated'], t('D, d M Y - g:i A')) )); } $o .= paginate($a); |