Fix date format again

This commit is contained in:
ruan 2016-09-09 17:45:16 +02:00
parent 1762f71a08
commit 0f874cc521

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
// Examples of default: July 2, 2015, 09:19; August 4, 2016, 18:37 // Examples of default: July 2, 2015, 09:19; August 4, 2016, 18:37
$this->date_format = '%B %d, %Y, %I:%M'; $this->date_format = '%B %d, %Y, %R';
date_default_timezone_set("UTC"); date_default_timezone_set("UTC");
// Enable PHP error reporting. // Enable PHP error reporting.