Changeset 1790 for trunk/bp-groups.php
- Timestamp:
- 09/04/2009 06:49:12 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-groups.php
r1783 r1790 490 490 /* Once we compelete all steps, record the group creation in the activity stream. */ 491 491 groups_record_activity( array( 492 'content' => sprintf( __( '%s created the group %s :', 'buddypress'), bp_core_get_userlink( $bp->loggedin_user->id ), '<a href="' . bp_get_group_permalink( $bp->groups->current_group ) . '">' . attribute_escape( $bp->groups->current_group->name ) . '</a>' ),492 'content' => sprintf( __( '%s created the group %s', 'buddypress'), bp_core_get_userlink( $bp->loggedin_user->id ), '<a href="' . bp_get_group_permalink( $bp->groups->current_group ) . '">' . attribute_escape( $bp->groups->current_group->name ) . '</a>' ), 493 493 'primary_link' => bp_get_group_permalink( $bp->groups->current_group ), 494 494 'component_action' => 'created_group', … … 2104 2104 'user_id' => (int)$topic->topic_poster, 2105 2105 'secondary_item_id' => $topic->topic_id, 2106 'recorded_time' => bb_gmtstrtotime( $topic->topic_time )2106 'recorded_time' => strtotime( $topic->topic_time ) 2107 2107 ) ); 2108 2108 … … 2154 2154 'item_id' => $bp->groups->current_group->id, 2155 2155 'secondary_item_id' => $post_id, 2156 'recorded_time' => bb_gmtstrtotime( $post->post_time )2156 'recorded_time' => strtotime( $post->post_time ) 2157 2157 ) ); 2158 2158
Note: See TracChangeset
for help on using the changeset viewer.