We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Use of 'self::' in some functions is dprecated in PHP v8.2
To Reproduce Steps to reproduce the behavior:
Expected behavior Should not throw messages
Screenshots If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Fix Change elFinder.class.php line # 795 to:
$doRegist = ($_reqCmd && in_array($_reqCmd, array_map('elFinder::getCmdOfBind', explode(' ', $cmd)))); ''' instead of currently ''' $doRegist = ($_reqCmd && in_array($_reqCmd, array_map('self::getCmdOfBind', explode(' ', $cmd))));
The text was updated successfully, but these errors were encountered:
This issue is stale because it has been open for 50 days with no activity.
Sorry, something went wrong.
I'll fix it. Thanks!
099803d
[php:core] fix Studio-42#3546 Use elFinder::getCmdOfBind instead of s…
7fa460a
…elf::getCmdOfBind which is deprecated in PHP v8.2
nao-pon
No branches or pull requests
Describe the bug
Use of 'self::' in some functions is dprecated in PHP v8.2
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Should not throw messages
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Fix
Change elFinder.class.php line # 795 to:
The text was updated successfully, but these errors were encountered: