Ticket #1477: 1477.003.diff
File 1477.003.diff, 915 bytes (added by , 14 years ago) |
---|
-
bbp-includes/bbp-reply-functions.php
269 269 270 270 /** Topic Tags ************************************************/ 271 271 272 // Just in time manipulation of reply terms before being edited 273 $terms = apply_filters( 'bbp_new_reply_pre_set_terms', $terms, $topic_id ); 274 272 275 // Insert terms 273 276 $terms = wp_set_post_terms( $topic_id, $terms, $bbp->topic_tag_id, false ); 274 277 … … 484 487 485 488 /** Topic Tags ************************************************/ 486 489 490 // Just in time manipulation of reply terms before being edited 491 $terms = apply_filters( 'bbp_edit_reply_pre_set_terms', $terms, $topic_id ); 492 487 493 // Insert terms 488 494 $terms = wp_set_post_terms( $topic_id, $terms, $bbp->topic_tag_id, false ); 489 495