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:
Daniel Kesselberg 2023-06-01 21:08:53 +02:00
parent 09c5f997c6
commit 3d3c49774f
No known key found for this signature in database
GPG key ID: 36E3664E099D0614

View file

@ -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;
}
}