mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 06:57:35 +01:00
Coding Standards: Use strict comparison in wp-includes/ms-files.php
.
Follow-up to [12603], [12936], [56395]. Props aristath, poena, afercia, SergeyBiryukov. See #58831. Built from https://develop.svn.wordpress.org/trunk@56430 git-svn-id: http://core.svn.wordpress.org/trunk@55942 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
106404bcbd
commit
a278aa2ac0
@ -18,7 +18,7 @@ if ( ! is_multisite() ) {
|
||||
|
||||
ms_file_constants();
|
||||
|
||||
if ( '1' == $current_blog->archived || '1' == $current_blog->spam || '1' == $current_blog->deleted ) {
|
||||
if ( '1' === $current_blog->archived || '1' === $current_blog->spam || '1' === $current_blog->deleted ) {
|
||||
status_header( 404 );
|
||||
die( '404 — File not found.' );
|
||||
}
|
||||
|
@ -16,7 +16,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.4-alpha-56424';
|
||||
$wp_version = '6.4-alpha-56430';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user