| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| api.include.php | 2026-06-13 | 497.1 kB | |
| api.php | 2026-06-13 | 497.9 kB | |
| README.md | 2026-06-13 | 430 Bytes | |
| v2.15.3_ PHP 8.5 support source code.tar.gz | 2026-06-13 | 79.5 kB | |
| v2.15.3_ PHP 8.5 support source code.zip | 2026-06-13 | 132.4 kB | |
| Totals: 5 Items | 1.2 MB | 4 | |
Fixes the PDO::MYSQL_ATTR_FOUND_ROWS deprecation on PHP 8.5.
The constant is deprecated since PHP 8.5 in favor of Pdo\Mysql::ATTR_FOUND_ROWS (available as of PHP 8.4). The notice was being written into the response body and breaking JSON output for MySQL connections. The code now uses the new constant when it exists and falls back to the old one on older PHP versions, so PHP 7.0+ stays supported.
Reported in [#1070].