- Timestamp:
- 10/23/2015 04:21:01 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/random_compat/random_bytes_dev_urandom.php
r34922 r35365 75 75 } 76 76 } 77 if (!is_int($bytes)) { 77 try { 78 $bytes = RandomCompat_intval($bytes); 79 } catch (TypeError $ex) { 78 80 throw new TypeError( 79 ' Lengthmust be an integer'81 'random_bytes(): $bytes must be an integer' 80 82 ); 81 83 }
Note: See TracChangeset
for help on using the changeset viewer.