Changeset 2416 for trunk/bp-blogs.php
- Timestamp:
- 01/24/2010 01:13:15 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-blogs.php
r2405 r2416 253 253 'item_id' => false, 254 254 'secondary_item_id' => false, 255 'recorded_time' => time(),256 255 'hide_sitewide' => false 257 256 ); … … 279 278 ) ); 280 279 281 return bp_activity_add( array( 'id' => $id, 'user_id' => $user_id, 'action' => $action, 'content' => $content, 'primary_link' => $primary_link, 'component' => $component, 'type' => $type, 'item_id' => $item_id, 'secondary_item_id' => $secondary_item_id, ' recorded_time' => $recorded_time, 'hide_sitewide' => $hide_sitewide ) );280 return bp_activity_add( array( 'id' => $id, 'user_id' => $user_id, 'action' => $action, 'content' => $content, 'primary_link' => $primary_link, 'component' => $component, 'type' => $type, 'item_id' => $item_id, 'secondary_item_id' => $secondary_item_id, 'hide_sitewide' => $hide_sitewide ) ); 282 281 } 283 282 … … 420 419 'item_id' => $blog_id, 421 420 'secondary_item_id' => $post_id, 422 'recorded_time' => strtotime( $post->post_date_gmt )421 'recorded_time' => $post->post_date_gmt 423 422 )); 424 423 } … … 455 454 'item_id' => $blog_id, 456 455 'secondary_item_id' => $post_id, 457 'recorded_time' => strtotime( $post->post_date_gmt )456 'recorded_time' => $post->post_date_gmt 458 457 ) ); 459 458 } … … 513 512 'item_id' => $wpdb->blogid, 514 513 'secondary_item_id' => $comment_id, 515 'recorded_time' => strtotime( $comment->comment_date_gmt )514 'recorded_time' => $comment->comment_date_gmt 516 515 ) ); 517 516 }
Note: See TracChangeset
for help on using the changeset viewer.