8ctopus

Results 126 comments of 8ctopus

Here's the detailed issue in php 8.5 ```txt PHPUnit 12.4.4 by Sebastian Bergmann and contributors. Runtime: PHP 8.5.0 Configuration: K:\dev\github\php-font-lib\phpunit.xml ..DD 4 / 4 (100%) Time: 00:02.423, Memory: 16.00 MB...

The source of the problem is that the following expression is deprecated in php 8.5 ```php var_dump(ord('')); // int(0) ``` and needs to be replaced by ```php var_dump(ord('0')); // int(0)...

Here's the successor: https://github.com/LeTraceurSnork/WordPress-Security-Advisories

Hello Denys, the issue is still present in php 8.5

@otsch Glad that you like the idea, I need it for a project I'm working on, so hacked it on my end. Since you already have put a lot of...