Merge pull request #12687 from DanielSiepmann/12686-fix-feed-creation-date-with-whitespace
Properly handle feed item creation date with surrounding whitespace
This commit is contained in:
commit
02a1b4eb17
|
@ -376,11 +376,11 @@ class Feed
|
|||
}
|
||||
|
||||
if ($published != '') {
|
||||
$item['created'] = $published;
|
||||
$item['created'] = trim($published);
|
||||
}
|
||||
|
||||
if ($updated != '') {
|
||||
$item['edited'] = $updated;
|
||||
$item['edited'] = trim($updated);
|
||||
}
|
||||
|
||||
if (!$dryRun) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user