- datepicker translations;

This commit is contained in:
nikitozzzzzzz
2018-11-27 14:58:34 +02:00
parent 4cf341e890
commit 961fdcbded
12 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -208,7 +208,7 @@ function um_profile_field_filter_hook__date( $value, $data ) {
if ( $data['pretty_format'] == 1 ) {
$value = UM()->datetime()->get_age( $value );
} else {
$value = UM()->datetime()->format( $value, $data['format'] );
$value = date_i18n( $data['format'], strtotime( $value ) );
}
return $value;