Changeset 49741 for trunk/src/wp-includes/sodium_compat/src/Core/Util.php
- Timestamp:
- 12/03/2020 05:39:03 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/sodium_compat/src/Core/Util.php
r49057 r49741 904 904 * @internal You should not use this directly from another application 905 905 * 906 * Note: MB_OVERLOAD_STRING === 2, but we don't reference the constant 907 * (for nuisance-free PHP 8 support) 908 * 906 909 * @return bool 907 910 */ … … 914 917 && defined('MB_OVERLOAD_STRING') 915 918 && 916 ((int) (ini_get('mbstring.func_overload')) & MB_OVERLOAD_STRING); 919 ((int) (ini_get('mbstring.func_overload')) & 2); 920 // MB_OVERLOAD_STRING === 2 917 921 } 918 922 /** @var bool $mbstring */
Note: See TracChangeset
for help on using the changeset viewer.