Changeset 9308 for trunk/src/bp-activity/bp-activity-admin.php
- Timestamp:
- 01/07/2015 10:03:19 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/bp-activity/bp-activity-admin.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-admin.php
r9194 r9308 433 433 434 434 /** 435 * Filters redirect URL after activ ty spamming/un-spamming/deletion occurs.435 * Filters redirect URL after activity spamming/un-spamming/deletion occurs. 436 436 * 437 437 * @since BuddyPress (1.6.0) … … 949 949 950 950 if ( $updated > 0 ) 951 $messages[] = __( 'The activity item has been updated succes fully.', 'buddypress' );951 $messages[] = __( 'The activity item has been updated successfully.', 'buddypress' ); 952 952 } 953 953 … … 1143 1143 ) ); 1144 1144 1145 // If we're viewing a specific activity, flatten all activit es into a single array.1145 // If we're viewing a specific activity, flatten all activities into a single array. 1146 1146 if ( $include_id ) { 1147 1147 $activities['activities'] = BP_Activity_List_Table::flatten_activity_array( $activities['activities'] ); … … 1157 1157 $new_activities[] = (array) $activity_item; 1158 1158 1159 // Build an array of activity-to-user ID mappings for better effic ency in the In Response To column1159 // Build an array of activity-to-user ID mappings for better efficiency in the In Response To column 1160 1160 $this->activity_user_id[$activity_item->id] = $activity_item->user_id; 1161 1161 } … … 1613 1613 /** 1614 1614 * If, somehow, the referenced activity has been deleted, leaving its associated 1615 * activit es as orphans, use the logged in user's ID to avoid errors.1615 * activities as orphans, use the logged in user's ID to avoid errors. 1616 1616 */ 1617 1617 if ( empty( $activity['activities'] ) )
Note: See TracChangeset
for help on using the changeset viewer.