- Timestamp:
- 10/21/2025 04:31:04 AM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/admin/plugin-dependencies/initialize.php
r60666 r61006 282 282 foreach ( $plugins as $plugin_file => &$headers ) { 283 283 // Create the expected slugs. 284 $slug = str_replace( '.php', '', explode( '/', $plugin_file )[0] ); 284 if ( 'hello.php' === $plugin_file ) { 285 $slug = 'hello-dolly'; 286 } else { 287 $slug = str_replace( '.php', '', explode( '/', $plugin_file )[0] ); 288 } 285 289 286 290 $expected_slugs[ $plugin_file ] = $slug;
Note: See TracChangeset
for help on using the changeset viewer.