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-xprofile/bp-xprofile-classes.php

    r1825 r1830  
    667667        $this->field_id = apply_filters( 'xprofile_data_field_id_before_save', $this->field_id, $this->id );
    668668        $this->value = apply_filters( 'xprofile_data_value_before_save', $this->value, $this->id );
    669         $this->last_updated = apply_filters( 'xprofile_data_last_updated_before_save', date_i18n( 'Y-m-d H:i:s' ), $this->id );
     669        $this->last_updated = apply_filters( 'xprofile_data_last_updated_before_save', date( 'Y-m-d H:i:s' ), $this->id );
    670670       
    671671        do_action( 'xprofile_data_before_save', $this );
    672        
     672
    673673        if ( $this->is_valid_field() ) {
    674674            if ( $this->exists() && $this->value != '' ) {
Note: See TracChangeset for help on using the changeset viewer.