Fatal error: Unparenthesized `a ? b : c ? d : e` is not supported

39 views Asked by At

I have installed Opal Theme and i have this error:

Fatal error: Unparenthesized `a ? b : c ? d : e` is not supported. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` 
   in /home/mhd-01/www.triumphclubroma.it/htdocs/wp-content/themes/lexrider/inc/admin/screens/welcome.php on line 96

This is the line 96

<span class="<?php echo esc_attr( $status['time_limit'] ? 'pass' : ( $data['time_limit'] >= 60 ) ? 'warning' : 'fail' ); ?>"></span>

How can I resolve this error?

0

There are 0 answers