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-groups/bp-groups-templatetags.php

    r1828 r1830  
    609609            $group =& $groups_template->group;
    610610
    611         return apply_filters( 'bp_get_group_date_created', date_i18n( get_option( 'date_format' ), $group->date_created ) );
     611        return apply_filters( 'bp_get_group_date_created', date( get_option( 'date_format' ), $group->date_created ) );
    612612    }
    613613
Note: See TracChangeset for help on using the changeset viewer.