Changeset 45637 for trunk/src/wp-includes/compat.php
- Timestamp:
- 07/15/2019 05:10:36 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/compat.php
r45636 r45637 450 450 } 451 451 452 /**453 * Polyfill for the SPL autoloader. In PHP 5.2 (but not 5.3 and later), SPL can454 * be disabled, and PHP 7.2 raises notices if the compiler finds an __autoload()455 * function declaration. Function availability is checked here, and the456 * autoloader is included only if necessary.457 */458 if ( ! function_exists( 'spl_autoload_register' ) ) {459 require_once ABSPATH . WPINC . '/spl-autoload-compat.php';460 }461 462 452 if ( ! function_exists( 'is_countable' ) ) { 463 453 /**
Note: See TracChangeset
for help on using the changeset viewer.