but we're using datetime

This commit is contained in:
Lorenzo Yario 2024-05-11 05:03:35 -07:00 committed by GitHub
parent cc55563411
commit 519dd27221
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -997,9 +997,9 @@
$config['timezone'] = 'America/Los_Angeles';
// The format string passed to DateTime::format() for displaying dates. ISO 8601-like by default.
// https://www.php.net/manual/en/datetime.format.php
$config['post_date'] = '%m/%d/%y (%a) %H:%M:%S';
$config['post_date'] = 'm/d/y (D) H:i:s';
// Same as above, but used for "you are banned' pages.
$config['ban_date'] = '%A %e %B, %Y';
$config['ban_date'] = 'l j F, Y';
// The names on the post buttons. (On most imageboards, these are both just "Post").
$config['button_newtopic'] = _('New Topic');