view/objectMain.php
cause = Unsupported operand types: string * float
Patch tool/projector.php by casting the 3 params to float:
function WidthDivContentDetail($positionListDiv,$objectClass){
….
$rightDivWidth=floatval(Parameter::getUserParameter('contentPaneRightDetailDivWidth'.$objectClass));
$widthListDiv=floatval(Parameter::getUserParameter("contentPaneTopDetailDivWidth".$objectClass));
$widthDetailDiv=floatval(Parameter::getUserParameter('contentPaneDetailDivWidth'.$objectClass));
Hi,
Thanks for pointing out the issue (ProjeQtOr is not tested yet over PHP8) and proposing the patch.
It(s included in next versniowith a small change : intval instead of floatval as data for width are in px, so we don't mind about decimals.