Changeset 7813 for trunk/bp-notifications/bp-notifications-classes.php
- Timestamp:
- 02/06/2014 08:33:50 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-notifications/bp-notifications-classes.php
r7711 r7813 123 123 $data_format = array( '%d', '%d', '%d', '%s', '%s', '%s', '%d' ); 124 124 125 do_action_ref_array( 'bp_notification_before_save', array( &$this ) ); 126 125 127 // Update 126 128 if ( ! empty( $this->id ) ) { … … 139 141 $retval = $wpdb->insert_id; 140 142 } 143 144 do_action_ref_array( 'bp_notification_after_save', array( &$this ) ); 141 145 142 146 // Return the result … … 674 678 $where = self::get_query_clauses( $args ); 675 679 680 do_action( 'bp_notification_before_delete', $args ); 681 676 682 return self::_delete( $where['data'], $where['format'] ); 677 683 }
Note: See TracChangeset
for help on using the changeset viewer.