Use strftime() instead of date() to respect other languages.

This commit is contained in:
Savetheinternet 2011-11-20 04:07:17 +11:00
parent 5fce70d703
commit 457e474520
5 changed files with 17 additions and 16 deletions

View file

@ -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) {