Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-01-27 14:08:57 +0300
committerGitHub <noreply@github.com>2017-01-27 14:08:57 +0300
commit05884bcd7c80ddd84b945ba6917bdf4a16532b52 (patch)
treeae558afb6b053c4289e7567c8fe0ff621e85076f /config
parentb5990b740d1208ee3c465fe49ca08d27855c35a6 (diff)
parenta13ea677ed61bb8f6cc162195b59d03068e884c2 (diff)
Merge pull request #3178 from nextcloud/default-value-logdateformat
fix default value for logdateformat
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 4f018d189da..a9ab67374f8 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -716,7 +716,9 @@ $CONFIG = array(
/**
* This uses PHP.date formatting; see http://php.net/manual/en/function.date.php
*
- * Defaults to ``Y-m-d\TH:i:sO`` (ISO8601)
+ * Defaults to ``Y-m-d\TH:i:sP`` (ISO8601 but with colon between hours and
+ * minutes of the timezone) - see \DateTime::ISO8601
+ * (https://secure.php.net/manual/en/class.datetime.php#datetime.constants.iso8601)
*/
'logdateformat' => 'F d, Y H:i:s',