mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 21:00:21 +00:00
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. git-svn-id: https://develop.svn.wordpress.org/trunk@47808 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -40,7 +40,7 @@ function wp_fix_server_vars() {
|
||||
$_SERVER = array_merge( $default_server_values, $_SERVER );
|
||||
|
||||
// Fix for IIS when running with PHP ISAPI.
|
||||
if ( empty( $_SERVER['REQUEST_URI'] ) || ( PHP_SAPI != 'cgi-fcgi' && preg_match( '/^Microsoft-IIS\//', $_SERVER['SERVER_SOFTWARE'] ) ) ) {
|
||||
if ( empty( $_SERVER['REQUEST_URI'] ) || ( 'cgi-fcgi' !== PHP_SAPI && preg_match( '/^Microsoft-IIS\//', $_SERVER['SERVER_SOFTWARE'] ) ) ) {
|
||||
|
||||
if ( isset( $_SERVER['HTTP_X_ORIGINAL_URL'] ) ) {
|
||||
// IIS Mod-Rewrite.
|
||||
@@ -137,7 +137,7 @@ function wp_check_php_mysql_versions() {
|
||||
* @deprecated 5.4.0 Deprecated in favor of do_favicon().
|
||||
*/
|
||||
function wp_favicon_request() {
|
||||
if ( '/favicon.ico' == $_SERVER['REQUEST_URI'] ) {
|
||||
if ( '/favicon.ico' === $_SERVER['REQUEST_URI'] ) {
|
||||
header( 'Content-Type: image/vnd.microsoft.icon' );
|
||||
exit;
|
||||
}
|
||||
@@ -628,7 +628,7 @@ function wp_get_mu_plugins() {
|
||||
return $mu_plugins;
|
||||
}
|
||||
while ( ( $plugin = readdir( $dh ) ) !== false ) {
|
||||
if ( substr( $plugin, -4 ) == '.php' ) {
|
||||
if ( '.php' === substr( $plugin, -4 ) ) {
|
||||
$mu_plugins[] = WPMU_PLUGIN_DIR . '/' . $plugin;
|
||||
}
|
||||
}
|
||||
@@ -670,7 +670,7 @@ function wp_get_active_and_valid_plugins() {
|
||||
|
||||
foreach ( $active_plugins as $plugin ) {
|
||||
if ( ! validate_file( $plugin ) // $plugin must validate as file.
|
||||
&& '.php' == substr( $plugin, -4 ) // $plugin must end with '.php'.
|
||||
&& '.php' === substr( $plugin, -4 ) // $plugin must end with '.php'.
|
||||
&& file_exists( WP_PLUGIN_DIR . '/' . $plugin ) // $plugin must exist.
|
||||
// Not already included as a network plugin.
|
||||
&& ( ! $network_plugins || ! in_array( WP_PLUGIN_DIR . '/' . $plugin, $network_plugins, true ) )
|
||||
@@ -1168,7 +1168,7 @@ function wp_load_translations_early() {
|
||||
|
||||
while ( true ) {
|
||||
if ( defined( 'WPLANG' ) ) {
|
||||
if ( '' == WPLANG ) {
|
||||
if ( '' === WPLANG ) {
|
||||
break;
|
||||
}
|
||||
$locales[] = WPLANG;
|
||||
@@ -1263,7 +1263,7 @@ function wp_installing( $is_installing = null ) {
|
||||
*/
|
||||
function is_ssl() {
|
||||
if ( isset( $_SERVER['HTTPS'] ) ) {
|
||||
if ( 'on' == strtolower( $_SERVER['HTTPS'] ) ) {
|
||||
if ( 'on' === strtolower( $_SERVER['HTTPS'] ) ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user