forked from leftypol/leftypol
Use strftime() instead of date() to respect other languages.
This commit is contained in:
parent
5fce70d703
commit
457e474520
5 changed files with 17 additions and 16 deletions
|
@ -443,9 +443,10 @@
|
|||
// Inline expanding of images with Javascript
|
||||
$config['inline_expanding'] = true;
|
||||
|
||||
// The string passed to date() for post times
|
||||
// http://php.net/manual/en/function.date.php
|
||||
// The format string passed to strftime() for post times
|
||||
// http://www.php.net/manual/en/function.strftime.php
|
||||
$config['post_date'] = 'm/d/y (D) H:i:s';
|
||||
$config['post_date'] = '%m/%d/%y (%a) %H:%M:%S';
|
||||
|
||||
// The names on the post buttons. (On most imageboards, these are both "Post")
|
||||
$config['button_newtopic'] = 'New Topic';
|
||||
|
|
|
@ -40,7 +40,7 @@ function twig_remove_whitespace_filter($data) {
|
|||
}
|
||||
|
||||
function twig_date_filter($date, $format) {
|
||||
return date($format, $date);
|
||||
return strftime($format, $date);
|
||||
}
|
||||
|
||||
function twig_hasPermission_filter($mod, $permission, $board) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue