User tests: Successful: Unsuccessful:
Pull Request for Issue #13008
Within Joomla, the RSS feed's lastBuildDate
element uses the current timestamp without a way for the timestamp to be set to a value which follows specification. JDocumentFeed::$lastBuildDate
can be used for this purpose. However, right now the field is declared as a string and the renderer uses a JDate
object.
This PR proposes a B/C break changing JDocumentFeed::$lastBuildDate
to be a JDate
object versus a string and changes the renderer to use this property instead of the hardcoded behavior that exists now.
From a feed view, a developer should be able to set JDocumentFeed::$lastBuildDate
to a JDate
object with a timestamp of their choosing and the feed renderer use this value for the lastBuildDate
element.
Note the B/C breaking change with the JDocumentFeed::$lastBuildDate
property.
Status | New | ⇒ | Pending |
Category | ⇒ | Libraries |
Labels |
Added:
?
|
Status | Pending | ⇒ | Fixed in Code Base |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-02-04 23:08:27 |
Closed_By | ⇒ | wilsonge |
This has caused Timezone being undefined for the published date in the RSS feed. This was fixed with 813f69f