Merge pull request #5 from rj0495/patch-1

Bug fix for Date Format.
This commit is contained in:
Ruan 2016-03-27 19:51:09 +02:00
commit e5eda0345c

View File

@ -62,7 +62,7 @@ final class Settings {
// The date format can be changed here. // The date format can be changed here.
// https://secure.php.net/manual/en/function.strftime.php // https://secure.php.net/manual/en/function.strftime.php
// Example of default: July 2, 2015, 9:19 PM // 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"); date_default_timezone_set("UTC");
// Enable PHP error reporting. // Enable PHP error reporting.