Published Content

I assume the reason to be able to set/modify the published date is so
that you can enter content to be publsihed at a later date. Currently
this does not work and all content is published immediately.

The following will fix this for both entries and pages:

PageService.cfc findPublishedPages method, line 107 add:
arrayAppend(criteria, restrictions.lt("publishedDate", Now()) );

EntryService.cfc findPublishedEntries method, line 108 add:
arrayAppend(criteria, restrictions.lt("publishedDate", Now()) );

Thanks I will add
This. Do you have git by any chance mike? To send pull requests

I installed GIT to participate in testing BlogBox. However, the company I
work for is using SVN exclusively. Therefore, I do not have much
experience with GIT. Are permissions set to where we can submit code
changes?

Michael