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
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
The text was updated successfully, but these errors were encountered:
sgehrig
pushed a commit
to teqneers/Workflow
that referenced
this issue
Jan 19, 2018
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
The text was updated successfully, but these errors were encountered: