pass "ago" information to the mail_list template

This commit is contained in:
Tobias Diekershoff 2012-08-27 19:31:41 +02:00
parent 37a0504f96
commit 1e9d35fb0e
1 changed files with 1 additions and 0 deletions

View File

@ -351,6 +351,7 @@ function message_content(&$a) {
'$body' => template_escape($rr['body']),
'$to_name' => template_escape($rr['name']),
'$date' => datetime_convert('UTC',date_default_timezone_get(),$rr['mailcreated'], t('D, d M Y - g:i A')),
'$ago' => relative_date($rr['mailcreated']),
'$seen' => $rr['mailseen'],
'$count' => sprintf( tt('%d message', '%d messages', $rr['count']), $rr['count']),
));