Skip to:
Content

BuddyPress.org

Changeset 1834 for trunk/bp-forums.php


Ignore:
Timestamp:
09/09/2009 10:20:13 PM (17 years ago)
Author:
apeatling
Message:

Backwards compatibility updates for 1.0.3 built themes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-forums.php

    r1749 r1834  
    132132                'topic_last_poster' => $bp->loggedin_user->id, // accepts ids
    133133                'topic_last_poster_name' => $bp->loggedin_user->fullname, // accept names
    134                 'topic_start_time' => bb_current_time( 'mysql' ),
    135                 'topic_time' => bb_current_time( 'mysql' ),
     134                'topic_start_time' => date( 'Y-m-d H:i:s' ),
     135                'topic_time' => date( 'Y-m-d H:i:s' ),
    136136                'topic_open' => 1,
    137137                'forum_id' => 0 // accepts ids or slugs
     
    247247                'topic_id' => false,
    248248                'post_text' => '',
    249                 'post_time' => bb_current_time( 'mysql' ),
     249                'post_time' => date( 'Y-m-d H:i:s' ),
    250250                'poster_id' => $bp->loggedin_user->id, // accepts ids or names
    251251                'poster_ip' => $_SERVER['REMOTE_ADDR'],
Note: See TracChangeset for help on using the changeset viewer.