Hi,
In case anyone else has this problem...
EShop 5.6.1 / Joomla 6.1.2 / PHP 8.3.32The Customer Downloads page throws:
Code:
round(): Argument #1 ($num) must be of type int|float, string given
File:
Code:
components/com_eshop/view/customer/html.php
Line 639
The fix I have used is:
Code:
round((float) substr($size, 0, strpos($size, '.') + 4), 2)
instead of:
Code:
round(substr($size, 0, strpos($size, '.') + 4), 2)
Kind regards
Claire :-)