diff options
author | friendica <info@friendica.com> | 2013-03-04 20:58:39 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-03-04 20:58:39 -0800 |
commit | 8d442e6fc1364ea351a9b781e8173c1b679b7a91 (patch) | |
tree | 39703e3d5750e13d666cabbbe3f21125284b9c40 /include/conversation.php | |
parent | 4cfbdfa6dbed878565bab5172efaf67c8fda0886 (diff) | |
download | volse-hubzilla-8d442e6fc1364ea351a9b781e8173c1b679b7a91.tar.gz volse-hubzilla-8d442e6fc1364ea351a9b781e8173c1b679b7a91.tar.bz2 volse-hubzilla-8d442e6fc1364ea351a9b781e8173c1b679b7a91.zip |
fix timeago (again), webfinger new spec implemented, some theme work
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index f8507c595..e8c391967 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -618,7 +618,8 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') { 'ago' => relative_date($item['created']), 'app' => $item['app'], 'str_app' => sprintf( t(' from %s'), $item['app']), - 'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'c'), + 'isotime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'c'), + 'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'r'), 'location' => $location, 'indent' => '', 'owner_name' => $owner_name, |