Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/serverinfo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPatrik Kernstock <info@pkern.at>2018-09-04 12:51:18 +0300
committerPatrik Kernstock <info@pkern.at>2018-09-04 12:51:18 +0300
commitb4f0c72cfece53f43a1feec789bee63958dcfd9a (patch)
treed3b42f493a31236a47958f8000369000dad4be6f /lib
parent9caecdffa657796b846f72cee0a62b8ff49d1c9d (diff)
Remove checking suhosin.executor.func.blacklist
Signed-off-by: Patrik Kernstock <info@pkern.at>
Diffstat (limited to 'lib')
-rw-r--r--lib/SystemStatistics.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/SystemStatistics.php b/lib/SystemStatistics.php
index 4003a5d..cc8cbaf 100644
--- a/lib/SystemStatistics.php
+++ b/lib/SystemStatistics.php
@@ -198,9 +198,6 @@ class SystemStatistics {
if ($this->phpIni->listContains('disable_functions', $function_name)) {
return false;
}
- if ($this->phpIni->listContains('suhosin.executor.func.blacklist', $function_name)) {
- return false;
- }
return true;
}