Changeset 7532 for trunk/bp-members/bp-members-notifications.php
- Timestamp:
- 11/08/2013 05:38:58 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-members/bp-members-notifications.php
r7531 r7532 24 24 * @param string $secondary_item_id 25 25 * @param string $date_notified 26 * @return boolean True on success, false on fail 27 */ 28 function bp_core_add_notification( $item_id, $user_id, $component_name, $component_action, $secondary_item_id = 0, $date_notified = false ) { 26 * @param string $is_new 27 * @return boolean True on success, false on fail 28 */ 29 function bp_core_add_notification( $item_id, $user_id, $component_name, $component_action, $secondary_item_id = 0, $date_notified = false, $is_new = true ) { 29 30 30 31 // Bail if notifications is not active … … 39 40 'component_action' => $component_action, 40 41 'secondary_item_id' => $secondary_item_id, 41 'date_notified' => $date_notified 42 'date_notified' => $date_notified, 43 'is_new' => $is_new 42 44 ); 43 45
Note: See TracChangeset
for help on using the changeset viewer.