OUGC-Network / OUGC-Awards

Adds a powerful awards system to you community.
https://ougc.network
GNU General Public License v3.0
8 stars 7 forks source link

Unparenthesized `a ? b : c ? d : e` is not supported. #74

Closed Pamnig closed 1 year ago

Pamnig commented 1 year ago

On manage awards this error pops up for me: 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 C:\xampp\htdocs\mybb\admin\modules\user\ougc_awards.php on line 226

Pamnig commented 1 year ago

I managed to solve the issue.

I just had to edit the code a lil bit.

here is the working ougc_awards.php

~~~

Sama34 commented 1 year ago

This parenthesizing issue is already fixed in the develop branch, I will eventually release it when I got the time to start updating my plugins for PHP 8, thanks for your report.