Coding Standards: Add missing `break` for the default case in `get_default_comment_status(()`.
Props itowhid06. Fixes #48095. Built from https://develop.svn.wordpress.org/trunk@46227 git-svn-id: http://core.svn.wordpress.org/trunk@46039 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
364355abc3
commit
31fca440bd
|
@ -283,6 +283,7 @@ function get_default_comment_status( $post_type = 'post', $comment_type = 'comme
|
|||
default:
|
||||
$supports = 'comments';
|
||||
$option = 'comment';
|
||||
break;
|
||||
}
|
||||
|
||||
// Set the status.
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.3-alpha-46226';
|
||||
$wp_version = '5.3-alpha-46227';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue