Changeset 47122 for trunk/src/wp-includes/compat.php
- Timestamp:
- 01/29/2020 12:43:23 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/compat.php
r46208 r47122 7 7 */ 8 8 9 // If gettext isn't available 9 // If gettext isn't available. 10 10 if ( ! function_exists( '_' ) ) { 11 11 function _( $string ) { … … 327 327 endif; 328 328 329 // random_int was introduced in PHP 7.0329 // random_int() was introduced in PHP 7.0. 330 330 if ( ! function_exists( 'random_int' ) ) { 331 331 require ABSPATH . WPINC . '/random_compat/random.php'; 332 332 } 333 // sodium_crypto_box was introduced in PHP 7.2333 // sodium_crypto_box() was introduced in PHP 7.2. 334 334 if ( ! function_exists( 'sodium_crypto_box' ) ) { 335 335 require ABSPATH . WPINC . '/sodium_compat/autoload.php';
Note: See TracChangeset
for help on using the changeset viewer.