- Issue created by @aquaphenix
- Status changed to Closed: duplicate
9 months ago 5:23am 22 March 2024
Line 143 is trying to multiply the $multiplier * 96, the multiplier is not numeric, needs to be cast into an int.
$css .= '@media (-webkit-min-device-pixel-ratio: ' . $multiplier . '), (min-resolution: ' . $multiplier * 96 . 'dpi), (min-resolution: ' . $multiplier . 'dppx) {';
cast $multiplier into int where the issue is occurring.
Closed: duplicate
1.0
Code
The issue particularly affects sites running on PHP version 8.1.0 or later.