Coding Standards: Use strict comparison where static strings are involved.
This reduces the number of `WordPress.PHP.StrictComparisons.LooseComparison` issues in half, from 1897 to 890. Includes minor code layout fixes for better readability. See #49542. Built from https://develop.svn.wordpress.org/trunk@47808 git-svn-id: http://core.svn.wordpress.org/trunk@47584 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -199,7 +199,7 @@ function get_blog_list( $start = 0, $num = 10, $deprecated = '' ) {
|
||||
return array();
|
||||
}
|
||||
|
||||
if ( $num == 'all' ) {
|
||||
if ( 'all' === $num ) {
|
||||
return array_slice( $blog_list, $start, count( $blog_list ) );
|
||||
} else {
|
||||
return array_slice( $blog_list, $start, $num );
|
||||
@@ -293,7 +293,7 @@ function wpmu_admin_do_redirect( $url = '' ) {
|
||||
if ( isset( $_GET['redirect'] ) && isset( $_POST['redirect'] ) && $_GET['redirect'] !== $_POST['redirect'] ) {
|
||||
wp_die( __( 'A variable mismatch has been detected.' ), __( 'Sorry, you are not allowed to view this item.' ), 400 );
|
||||
} elseif ( isset( $_GET['redirect'] ) ) {
|
||||
if ( substr( $_GET['redirect'], 0, 2 ) == 's_' )
|
||||
if ( 's_' === substr( $_GET['redirect'], 0, 2 ) )
|
||||
$url .= '&action=blogs&s='. esc_html( substr( $_GET['redirect'], 2 ) );
|
||||
} elseif ( isset( $_POST['redirect'] ) ) {
|
||||
$url = wpmu_admin_redirect_add_updated_param( $_POST['redirect'] );
|
||||
@@ -372,7 +372,7 @@ function get_blogaddress_by_domain( $domain, $path ) {
|
||||
$blogname = substr( $domain, 0, strpos( $domain, '.' ) );
|
||||
$url = 'http://' . substr( $domain, strpos( $domain, '.' ) + 1 ) . $path;
|
||||
// We're not installing the main blog.
|
||||
if ( $blogname != 'www.' )
|
||||
if ( 'www.' !== $blogname )
|
||||
$url .= $blogname . '/';
|
||||
} else { // Main blog.
|
||||
$url = 'http://' . $domain . $path;
|
||||
@@ -718,7 +718,7 @@ function update_user_status( $id, $pref, $value, $deprecated = null ) {
|
||||
$user = new WP_User( $id );
|
||||
clean_user_cache( $user );
|
||||
|
||||
if ( $pref == 'spam' ) {
|
||||
if ( 'spam' === $pref ) {
|
||||
if ( $value == 1 ) {
|
||||
/** This filter is documented in wp-includes/user.php */
|
||||
do_action( 'make_spam_user', $id );
|
||||
|
||||
Reference in New Issue
Block a user