Changeset 56014 for trunk/src/wp-includes/load.php
- Timestamp:
- 06/24/2023 09:50:34 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r55990 r56014 878 878 foreach ( $active_plugins as $plugin ) { 879 879 if ( ! validate_file( $plugin ) // $plugin must validate as file. 880 && '.php' === substr( $plugin, -4) // $plugin must end with '.php'.880 && str_ends_with( $plugin, '.php' ) // $plugin must end with '.php'. 881 881 && file_exists( WP_PLUGIN_DIR . '/' . $plugin ) // $plugin must exist. 882 882 // Not already included as a network plugin.
Note: See TracChangeset
for help on using the changeset viewer.