- Timestamp:
- 06/22/2023 02:34:56 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r55971 r55988 82 82 $s = isset( $_REQUEST['s'] ) ? wp_unslash( trim( $_REQUEST['s'] ) ) : ''; 83 83 $wild = ''; 84 if ( false !== strpos( $s, '*' ) ) {84 if ( str_contains( $s, '*' ) ) { 85 85 $wild = '*'; 86 86 $s = trim( $s, '*' );
Note: See TracChangeset
for help on using the changeset viewer.