Closed
Description
Changes coming in PHP 8 result in an error on Line 121 of view.php: Unparenthesized a ? b : c ? d : e
is not supported. Use either (a ? b : c) ? d : e
or a ? b : (c ? d : e)
.
Pretty sure the second case is the desired methodology.