diff options
author | Daniel <mail@danielkesselberg.de> | 2023-06-02 18:00:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-02 18:00:44 +0200 |
commit | 21885058378c1fb15ad0cb847043c0eea0e7de22 (patch) | |
tree | c42661060be8a5a04229c0460dda8fe527987804 | |
parent | 09c5f997c6d185d8b23b37a996e7a1130a426d75 (diff) | |
parent | 3d3c49774f41ac058f4e0a79e5b27cf74af85043 (diff) | |
download | nextcloud-server-21885058378c1fb15ad0cb847043c0eea0e7de22.tar.gz nextcloud-server-21885058378c1fb15ad0cb847043c0eea0e7de22.zip |
Merge pull request #38595 from nextcloud/remove-suhosin-check
chore: remove check for suhosin.executor.func.blacklist
-rw-r--r-- | lib/public/Util.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/public/Util.php b/lib/public/Util.php index b42327ada93..f73c19e6dcd 100644 --- a/lib/public/Util.php +++ b/lib/public/Util.php @@ -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; } } |