- Timestamp:
- 10/23/2015 04:21:01 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/random_compat/byte_safe_strings.php
r34922 r35365 28 28 29 29 if (!function_exists('RandomCompat_strlen')) { 30 if (defined('MB_OVERLOAD_STRING') && ini_get('mbstring.func_overload') & MB_OVERLOAD_STRING) { 30 if ( 31 defined('MB_OVERLOAD_STRING') && 32 ini_get('mbstring.func_overload') & MB_OVERLOAD_STRING 33 ) { 31 34 /** 32 35 * strlen() implementation that isn't brittle to mbstring.func_overload … … 75 78 76 79 if (!function_exists('RandomCompat_substr')) { 77 if (defined('MB_OVERLOAD_STRING') && ini_get('mbstring.func_overload') & MB_OVERLOAD_STRING) { 80 if ( 81 defined('MB_OVERLOAD_STRING') && 82 ini_get('mbstring.func_overload') & MB_OVERLOAD_STRING 83 ) { 78 84 /** 79 85 * substr() implementation that isn't brittle to mbstring.func_overload
Note: See TracChangeset
for help on using the changeset viewer.