forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MDL-67316 typo3: Pass correct hex chars to hexdec()
Typo3 was relaying on the feature of base converter functions silently removing invalid chars so, for example: 'U+00A0' => '00A0' => 160 Since php74, the existence of those invalid chars do produce a deprecation warning, no matter the outcome continues being the same. So, here, we are just converting that invalud 'U+' by '0x'
- Loading branch information
Showing
2 changed files
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters