Changeset 10853 for trunk/src/bp-activity/bp-activity-functions.php
- Timestamp:
- 06/01/2016 04:59:31 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-functions.php
r10833 r10853 170 170 171 171 // Get activity object. 172 $activity = new BP_Activity_Activity( (int)$activity_id );172 $activity = new BP_Activity_Activity( $activity_id ); 173 173 174 174 // Try to find mentions. … … 2557 2557 2558 2558 // Check to see if the parent activity is hidden, and if so, hide this comment publicly. 2559 $is_hidden = ( (int) $activity->hide_sitewide )? 1 : 0;2559 $is_hidden = $activity->hide_sitewide ? 1 : 0; 2560 2560 2561 2561 /**
Note: See TracChangeset
for help on using the changeset viewer.