mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
chore: remove check for suhosin.executor.func.blacklist
Suhosin is/was a PHP extension. The last release was 2015-05-21. Suhosin does not support PHP 8. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
09c5f997c6
commit
3d3c49774f
1 changed files with 0 additions and 5 deletions
|
|
@ -596,11 +596,6 @@ class Util {
|
|||
if (in_array($functionName, $disabled)) {
|
||||
return false;
|
||||
}
|
||||
$disabled = explode(',', $ini->get('suhosin.executor.func.blacklist') ?: '');
|
||||
$disabled = array_map('trim', $disabled);
|
||||
if (in_array($functionName, $disabled)) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue