Skip to:
Content

BuddyPress.org

Changeset 1790 for trunk/bp-groups.php


Ignore:
Timestamp:
09/04/2009 06:49:12 PM (15 years ago)
Author:
apeatling
Message:

Fixes #949

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-groups.php

    r1783 r1790  
    490490            /* Once we compelete all steps, record the group creation in the activity stream. */
    491491            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>' ),
    493493                'primary_link' => bp_get_group_permalink( $bp->groups->current_group ),
    494494                'component_action' => 'created_group',
     
    21042104            'user_id' => (int)$topic->topic_poster,
    21052105            'secondary_item_id' => $topic->topic_id,
    2106             'recorded_time' => bb_gmtstrtotime( $topic->topic_time )
     2106            'recorded_time' => strtotime( $topic->topic_time )
    21072107        ) );
    21082108
     
    21542154            'item_id' => $bp->groups->current_group->id,
    21552155            'secondary_item_id' => $post_id,
    2156             'recorded_time' => bb_gmtstrtotime( $post->post_time )
     2156            'recorded_time' => strtotime( $post->post_time )
    21572157        ) );
    21582158
Note: See TracChangeset for help on using the changeset viewer.