Coding Standards: Fix the Squiz.PHP.DisallowMultipleAssignments violations in wp-includes.

See #47632.


Built from https://develop.svn.wordpress.org/trunk@45590


git-svn-id: http://core.svn.wordpress.org/trunk@45401 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast
2019-07-02 23:42:58 +00:00
parent 55b2d94cca
commit 4803fc405e
76 changed files with 1038 additions and 588 deletions

View File

@@ -109,7 +109,8 @@ function wp_fix_server_vars() {
// Fix empty PHP_SELF
$PHP_SELF = $_SERVER['PHP_SELF'];
if ( empty( $PHP_SELF ) ) {
$_SERVER['PHP_SELF'] = $PHP_SELF = preg_replace( '/(\?.*)?$/', '', $_SERVER['REQUEST_URI'] );
$_SERVER['PHP_SELF'] = preg_replace( '/(\?.*)?$/', '', $_SERVER['REQUEST_URI'] );
$PHP_SELF = $_SERVER['PHP_SELF'];
}
}
@@ -634,7 +635,8 @@ function wp_get_mu_plugins() {
if ( ! is_dir( WPMU_PLUGIN_DIR ) ) {
return $mu_plugins;
}
if ( ! $dh = opendir( WPMU_PLUGIN_DIR ) ) {
$dh = opendir( WPMU_PLUGIN_DIR );
if ( ! $dh ) {
return $mu_plugins;
}
while ( ( $plugin = readdir( $dh ) ) !== false ) {
@@ -1164,7 +1166,8 @@ function wp_load_translations_early() {
// General libraries
require_once ABSPATH . WPINC . '/plugin.php';
$locales = $locations = array();
$locales = array();
$locations = array();
while ( true ) {
if ( defined( 'WPLANG' ) ) {