Changeset 55988 for trunk/src/wp-includes/ms-functions.php
- Timestamp:
- 06/22/2023 02:34:56 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/ms-functions.php
r55942 r55988 1993 1993 foreach ( $site_exts as $ext ) { 1994 1994 foreach ( $mimes as $ext_pattern => $mime ) { 1995 if ( '' !== $ext && false !== strpos( $ext_pattern, $ext ) ) {1995 if ( '' !== $ext && str_contains( $ext_pattern, $ext ) ) { 1996 1996 $site_mimes[ $ext_pattern ] = $mime; 1997 1997 } … … 2166 2166 */ 2167 2167 function maybe_add_existing_user_to_blog() { 2168 if ( false === strpos( $_SERVER['REQUEST_URI'], '/newbloguser/' ) ) {2168 if ( ! str_contains( $_SERVER['REQUEST_URI'], '/newbloguser/' ) ) { 2169 2169 return; 2170 2170 }
Note: See TracChangeset
for help on using the changeset viewer.