Changeset 6415 for trunk/src/includes/extend/buddypress/activity.php
- Timestamp:
- 05/19/2017 03:25:37 AM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/extend/buddypress/activity.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/extend/buddypress/activity.php
r6391 r6415 366 366 367 367 // Check if this activity stream action is disabled 368 if ( in_array( $action_name, $disabled_actions ) ) {368 if ( in_array( $action_name, $disabled_actions, true ) ) { 369 369 $can_comment = false; 370 370 } … … 392 392 393 393 // Check if this activity stream action is directly linked 394 if ( in_array( $activity_object->type, $disabled_actions ) ) {394 if ( in_array( $activity_object->type, $disabled_actions, true ) ) { 395 395 $link = $activity_object->primary_link; 396 396 }
Note: See TracChangeset
for help on using the changeset viewer.