Skip to content

Commit

Permalink
Undo prefix 'distributable_post_types' filter
Browse files Browse the repository at this point in the history
This somehow snuck in and is a potential breaking
change handled in #158
  • Loading branch information
barryceelen committed Jul 7, 2018
1 parent 57d6b8f commit d5ba46d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ function distributable_post_types() {
* @since 1.0.0
* @param array Post types that are distributable. Default 'all post types except dt_ext_connection and dt_subscription'.
*/
return apply_filters( 'dt_distributable_post_types', array_diff( $post_types, [ 'dt_ext_connection', 'dt_subscription' ] ) );
return apply_filters( 'distributable_post_types', array_diff( $post_types, [ 'dt_ext_connection', 'dt_subscription' ] ) );
}

/**
Expand Down

0 comments on commit d5ba46d

Please sign in to comment.