From 2dfa355cbd8f61941e25ebe6b0328494e3b32499 Mon Sep 17 00:00:00 2001 From: Ryan James Date: Sat, 26 Mar 2016 22:48:14 +0000 Subject: [PATCH] Bug fix for Date Format. The minutes in the Date were off. So I fixed them. --- inc/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/settings.php b/inc/settings.php index a8f890a..7002aae 100644 --- a/inc/settings.php +++ b/inc/settings.php @@ -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.