Merge pull request #5699 from annando/issue-5691

Issue 5691: Post dates of feeds sometimes had been wrong
pull/5701/head
Hypolite Petovan 2018-08-29 16:08:54 -04:00 zatwierdzone przez GitHub
commit dfbac99aa6
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -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;
}