Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/28/2009 09:18:19 PM (16 years ago)
Author:
apeatling
Message:

Fixes #845 props remi, GIGALinux

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-templatetags.php

    r1721 r1726  
    398398
    399399function bp_format_time( $time, $just_date = false ) {
    400     $date = date( get_option('date_format'), $time );
     400    $date = date_i18n( get_option('date_format'), $time );
    401401   
    402402    if ( !$just_date ) {
    403         $date .= ' ' . __( 'at', 'buddypress' ) . date( ' ' . get_option('time_format'), $time );
     403        $date .= ' ' . __( 'at', 'buddypress' ) . date_i18n( ' ' . get_option('time_format'), $time );
    404404    }
    405405   
Note: See TracChangeset for help on using the changeset viewer.