You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 12, 2025. It is now read-only.
Using PHP 7.1 when using variableDecrement and Increment an exception is thrown.
We have traced the error back to the ezcWorkflowNodeArithmeticBase::Execute.
The issue arises because VariableDecrement and Increment do not set $configuration/operand, therefore at the moment when execute checks if it's set an exception is thrown.
The correction is to modify ezcWorkflowNodeArithmeticBase::Execute,
add line 100> $operand = 1;
add line 115> if ($operand !==null) { $this->operand = $operand }
else