Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/08/2009 10:37:01 PM (16 years ago)
Author:
apeatling
Message:

Switching back to standard date() from date_i8n() for now as it's buggy with dates prior t the 1970 epoch.

File:
1 edited

Legend:

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

    r1824 r1830  
    396396
    397397function bp_format_time( $time, $just_date = false ) {
    398     $date = date_i18n( get_option('date_format'), $time );
     398    $date = date( get_option('date_format'), $time );
    399399   
    400400    if ( !$just_date ) {
    401         $date .= ' ' . __( 'at', 'buddypress' ) . date_i18n( ' ' . get_option('time_format'), $time );
     401        $date .= ' ' . __( 'at', 'buddypress' ) . date( ' ' . get_option('time_format'), $time );
    402402    }
    403403   
Note: See TracChangeset for help on using the changeset viewer.