Coding Standards: Use strict comparison in wp-admin/includes/comment.php.

See #52627.
Built from https://develop.svn.wordpress.org/trunk@50664


git-svn-id: http://core.svn.wordpress.org/trunk@50276 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2021-04-06 13:45:09 +00:00
parent 72a04aa045
commit 48cd688076
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ function edit_comment() {
}
foreach ( array( 'aa', 'mm', 'jj', 'hh', 'mn' ) as $timeunit ) {
if ( ! empty( $_POST[ 'hidden_' . $timeunit ] ) && $_POST[ 'hidden_' . $timeunit ] != $_POST[ $timeunit ] ) {
if ( ! empty( $_POST[ 'hidden_' . $timeunit ] ) && $_POST[ 'hidden_' . $timeunit ] !== $_POST[ $timeunit ] ) {
$_POST['edit_date'] = '1';
break;
}

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.8-alpha-50663';
$wp_version = '5.8-alpha-50664';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.