Need to strtotime before we can format the date

This commit is contained in:
Stephen Paul Weber 2016-06-10 21:02:08 +00:00
parent 4f3a031786
commit 624584f9df
1 changed files with 2 additions and 2 deletions

View File

@ -243,8 +243,8 @@ function linkback_notice($source, $notice_or_user, $entry, $author, $mf2) {
if (isset($entry['published']) || isset($entry['updated'])) {
$options['created'] = isset($entry['published'])
? common_sql_date($entry['published'][0])
: common_sql_date($entry['updated'][0]);
? common_sql_date(strtotime($entry['published'][0]))
: common_sql_date(strtotime($entry['updated'][0]));
}
if (isset($entry['photo']) && common_valid_http_url($entry['photo'])) {