Bug fix for Date Format.

The minutes in the Date were off. So I fixed them.
This commit is contained in:
Ryan James 2016-03-26 22:48:14 +00:00
parent ea86a211f1
commit 2dfa355cbd

View File

@ -62,7 +62,7 @@ final class Settings {
// The date format can be changed here.
// https://secure.php.net/manual/en/function.strftime.php
// Example of default: July 2, 2015, 9:19 PM
$this->date_format = '%B %d, %Y, %H:%I %p';
$this->date_format = '%B %d, %Y, %T %p';
date_default_timezone_set("UTC");
// Enable PHP error reporting.