Changeset 864 for trunk/bp-activity.php
- Timestamp:
- 01/18/2009 01:48:57 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity.php
r849 r864 3 3 4 4 define ( 'BP_ACTIVITY_IS_INSTALLED', 1 ); 5 define ( 'BP_ACTIVITY_VERSION', '1.0b1 ' );5 define ( 'BP_ACTIVITY_VERSION', '1.0b1.1' ); 6 6 7 7 /* How long before activity items in streams are re-cached? */ … … 38 38 component_action varchar(75) NOT NULL, 39 39 date_recorded datetime NOT NULL, 40 is_private tinyint(1) NOT NULL, 40 is_private tinyint(1) NOT NULL DEFAULT 0, 41 no_sitewide_cache tinyint(1) NOT NULL DEFAULT 0, 41 42 KEY item_id (item_id), 42 43 KEY user_id (user_id), … … 55 56 date_cached datetime NOT NULL, 56 57 date_recorded datetime NOT NULL, 57 is_private tinyint(1) NOT NULL ,58 is_private tinyint(1) NOT NULL DEFAULT 0, 58 59 KEY date_cached (date_cached), 59 60 KEY date_recorded (date_recorded), … … 240 241 $activity->date_recorded = $recorded_time; 241 242 $activity->is_private = $is_private; 242 243 243 244 // We don't want to record this on the sitewide stream, otherwise we will get duplicates. 244 $activity->no_sitewide_ recording= true;245 $activity->no_sitewide_cache = true; 245 246 246 247 $secondary_user_save = $activity->save();
Note: See TracChangeset
for help on using the changeset viewer.