-
apply_filters( 'bbp_get_form_reply_log_edit', checked( $reply_revision, true, false ) )
Source Reference:
-
// Get _POST data if ( 'post' == strtolower( $_SERVER['REQUEST_METHOD'] ) && isset( $_POST['bbp_log_reply_edit'] ) ) $reply_revision = $_POST['bbp_log_reply_edit']; // No data else $reply_revision = 1; return apply_filters( 'bbp_get_form_reply_log_edit', checked( $reply_revision, true, false ) ); } /** * Output the value of the reply edit reason * * @since bbPress {unknown} * * @uses bbp_get_form_reply_edit_reason() To get the reply edit reason value */ function bbp_form_reply_edit_reason() {
-