Changeset 4042 for branches/plugin/bbp-includes/bbp-reply-functions.php
- Timestamp:
- 07/02/2012 12:39:16 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-reply-functions.php
r4041 r4042 228 228 229 229 /** Additional Actions (Before Save) **************************************/ 230 230 231 do_action( 'bbp_new_reply_pre_extras', $topic_id, $forum_id ); 232 231 233 // Bail if errors 232 234 if ( bbp_has_errors() ) … … 234 236 235 237 /** No Errors *************************************************************/ 236 237 do_action( 'bbp_new_reply_pre_extras', $topic_id, $forum_id );238 238 239 239 // Add the content of the form to $reply_data as an array … … 505 505 'post_title' => $reply_title, 506 506 'post_content' => $reply_content, 507 'post_status' => $post_status 507 'post_status' => $post_status, 508 'post_parent' => $reply->post_parent, 509 'post_author' => $reply->post_author, 510 'post_type' => bbp_get_reply_post_type() 508 511 ) ); 509 512
Note: See TracChangeset
for help on using the changeset viewer.