Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/09/2011 05:47:59 PM (15 years ago)
Author:
boonebgorges
Message:

Switches date picker xprofile fields to save in MySQL date format rather than UNIX timestamp, to prevent problems with UNIX epoch. Fixes #2240. Props cnorris23, r-a-y

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-xprofile/bp-xprofile-screens.php

    r4961 r5131  
    7171
    7272                    // Turn the concatenated value into a timestamp
    73                     $_POST['field_' . $field_id] = strtotime( $date_value );
     73                    $_POST['field_' . $field_id] = date( 'Y-m-d H:i:s', strtotime( $date_value ) );
    7474                }
    7575
Note: See TracChangeset for help on using the changeset viewer.