Skip to:
Content

BuddyPress.org

Changeset 2460 for trunk/bp-blogs.php


Ignore:
Timestamp:
01/26/2010 05:49:48 PM (15 years ago)
Author:
apeatling
Message:

Fixed forum post activity tracking, now links directly to the forum post. Only show post form on the last page of posts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-blogs.php

    r2424 r2460  
    253253        'item_id' => false,
    254254        'secondary_item_id' => false,
     255        'recorded_time' => gmdate( "Y-m-d H:i:s" ),
    255256        'hide_sitewide' => false
    256257    );
     
    278279    ) );
    279280
    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 ) );
     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 ) );
    281282}
    282283
Note: See TracChangeset for help on using the changeset viewer.