Changeset 3222
- Timestamp:
- 05/25/2011 08:45:04 AM (14 years ago)
- Location:
- branches/plugin/bbp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-reply-functions.php
r3179 r3222 256 256 'post_type' => bbp_get_reply_post_type() 257 257 ); 258 259 // Just in time manipulation of reply data before being created 260 $reply_data = apply_filters( 'bbp_new_reply_pre_insert', $reply_data ); 258 261 259 262 // Insert reply … … 445 448 'post_content' => $reply_content 446 449 ); 450 451 // Just in time manipulation of reply data before being edited 452 $reply_data = apply_filters( 'bbp_new_reply_pre_insert', $reply_data ); 447 453 448 454 // Insert reply -
branches/plugin/bbp-includes/bbp-topic-functions.php
r3180 r3222 190 190 'post_type' => bbp_get_topic_post_type() 191 191 ); 192 193 // Just in time manipulation of topic data before being created 194 $topic_data = apply_filters( 'bbp_new_topic_pre_insert', $topic_data ); 192 195 193 196 // Insert topic … … 444 447 ); 445 448 449 // Just in time manipulation of topic data before being edited 450 $topic_data = apply_filters( 'bbp_new_topic_pre_insert', $topic_data ); 451 446 452 // Insert topic 447 453 $topic_id = wp_update_post( $topic_data );
Note: See TracChangeset
for help on using the changeset viewer.