You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when using AutoFiling, the news items get filed according to their creation time, i.e the time the page is saved in the CMS.
To me it would be more straightforward if it used the "first published" date instead.
Is there a reason for using creation date? If so, might be worth to add to the readme :-)
changing it for me is simple (getPartitionedHolderForArticle - just replace $article->Created with $article->OriginalPublishedDate ) - I wonder more about the decision/rationale behind this.
The text was updated successfully, but these errors were encountered:
Good idea. The existing rationale is that OriginalPublishedDate wasn't always set (and wasn't defaulted to 'now'), meaning it would have been blank. But it probably would be better to use that date if set, or fall back to Created. If you want to submit a pull request with that change I'll merge it, or when I get a chance will add it.
Currently, when using AutoFiling, the news items get filed according to their creation time, i.e the time the page is saved in the CMS.
To me it would be more straightforward if it used the "first published" date instead.
Is there a reason for using creation date? If so, might be worth to add to the readme :-)
changing it for me is simple (getPartitionedHolderForArticle - just replace $article->Created with $article->OriginalPublishedDate ) - I wonder more about the decision/rationale behind this.
The text was updated successfully, but these errors were encountered: