PluginProbe
ActivityPub / 7.7.0
ActivityPub v7.7.0
9.3.1 9.3.0 9.2.2 9.2.1 9.2.0 9.1.0 9.0.2 9.0.1 9.0.0 8.3.0 8.2.1 8.2.0 8.1.1 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.2.0 1.3.0 2.0.0 2.0.1 2.1.0 2.1.1 All 160 releases
← All changes | integration/class-surge.php +3 -3 9.2.07.7.0 View file →
@@ -113,17 +113,17 @@
113 113 public static function get_config_file_path() {
114 114 $config_file = false;
115 115
116 116 // phpcs:ignore WordPress.PHP.NoSilencedErrors
117 - if ( @\file_exists( ABSPATH . 'wp-config.php' ) ) {
117 + if ( @file_exists( ABSPATH . 'wp-config.php' ) ) {
118 118
119 119 /** The config file resides in ABSPATH */
120 120 $config_file = ABSPATH . 'wp-config.php';
121 121 // phpcs:ignore WordPress.PHP.NoSilencedErrors
122 - } elseif ( @\file_exists( \dirname( ABSPATH ) . '/wp-config.php' ) && ! @\file_exists( \dirname( ABSPATH ) . '/wp-settings.php' ) ) {
122 + } elseif ( @file_exists( dirname( ABSPATH ) . '/wp-config.php' ) && ! @file_exists( dirname( ABSPATH ) . '/wp-settings.php' ) ) {
123 123
124 124 /** The config file resides one level above ABSPATH but is not part of another installation */
125 - $config_file = \dirname( ABSPATH ) . '/wp-config.php';
125 + $config_file = dirname( ABSPATH ) . '/wp-config.php';
126 126 }
127 127
128 128 /**
129 129 * Filter the config file path.