Changeset 55990 for trunk/src/wp-admin/includes/deprecated.php
- Timestamp:
- 06/22/2023 02:55:47 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/deprecated.php
r55988 r55990 1366 1366 reset( $plugin_slugs ); 1367 1367 foreach ( $plugin_slugs as $plugin_slug ) { 1368 if ( $slug === substr( $plugin_slug, 0, strlen( $slug )) ) {1368 if ( str_starts_with( $plugin_slug, $slug ) ) { 1369 1369 unset( $items[$item_key] ); 1370 1370 continue 2;
Note: See TracChangeset
for help on using the changeset viewer.