Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
nguyentranchung opened this issue Nov 27, 2022 · 2 comments
Closed

Comments

@nguyentranchung
Copy link
Contributor

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 tinyfilemanager.php on line 2136

@NFu1nLfdcinVtUqlH1CQ
Copy link

Replace line #2136:
<td class="gray" colspan="<?php echo (!FM_IS_WIN && !$hide_Cols) ? FM_READONLY ? '6' :'7' : FM_READONLY ? '4' : '5' ?>">

with:
<td class="gray" colspan="<?php echo (!FM_IS_WIN && !$hide_Cols) ? FM_READONLY ? '6' :'7' : (FM_READONLY ? '4' : '5') ?>">

@prasathmani
Copy link
Owner

#898 898

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants