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
However:
Not sure what the "Date Format" in the admin menu does, for me it stays on "Custom" no matter what you select. Is this supposed to be how the date is stored? The resulting issue with this is that it seems to be that the above code is static and thus will always require the same format.
The text was updated successfully, but these errors were encountered:
In regards to this, there seems to be an inconsistency with how the date is initially stored when a task is created. And how the date is stored after a task is edited.
None of the tasks are shown on the calendar.
The issue is in functions.php, line 311:
Which results in the following:
2013-06-15 00:00:00
This however is not how CollabPress dates in the database.
The database stores the following:
6/15/2013
Thus when running the query on the database for a task on a certain date, there is always zero results.
The fix seems obvious.
By changing $formatDate to the following it should work.
However:
Not sure what the "Date Format" in the admin menu does, for me it stays on "Custom" no matter what you select. Is this supposed to be how the date is stored? The resulting issue with this is that it seems to be that the above code is static and thus will always require the same format.
The text was updated successfully, but these errors were encountered: