let's continue to use current date/time formatting

This commit is contained in:
Lorenzo Yario 2024-05-11 04:58:59 -07:00 committed by GitHub
parent de91423a9f
commit cc55563411
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'] = 'd-m-Y (D) H:i:s';
$config['post_date'] = '%m/%d/%y (%a) %H:%M:%S';
// Same as above, but used for "you are banned' pages.
$config['ban_date'] = 'l j F, Y';
$config['ban_date'] = '%A %e %B, %Y';
// The names on the post buttons. (On most imageboards, these are both just "Post").
$config['button_newtopic'] = _('New Topic');