Changeset 36257 for branches/4.4/src/wp-includes/random_compat/random.php
- Timestamp:
- 01/11/2016 04:37:25 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.4/src/wp-includes/random_compat/random.php
r36058 r36257 57 57 * See ERRATA.md for our reasoning behind this particular order 58 58 */ 59 if ( extension_loaded('libsodium')) {59 if (PHP_VERSION_ID >= 50300 && extension_loaded('libsodium') && function_exists('\\Sodium\\randombytes_buf')) { 60 60 // See random_bytes_libsodium.php 61 61 require_once $RandomCompatDIR.'/random_bytes_libsodium.php';
Note: See TracChangeset
for help on using the changeset viewer.