Issue 5691: Post dates of feeds sometimes had been wrong

This commit is contained in:
Michael 2018-08-29 19:11:43 +00:00
parent c7f8f190b9
commit 9bff31f18f
1 changed files with 6 additions and 1 deletions

View File

@ -271,9 +271,14 @@ class Feed {
}
$updated = XML::getFirstNodeValue($xpath, 'atom:updated/text()', $entry);
if (empty($updated)) {
if (empty($updated) && !empty($published)) {
$updated = $published;
}
if (empty($published) && !empty($updated)) {
$published = $updated;
}
if ($published != "") {
$item["created"] = $published;
}