aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/helper.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-10-29 09:52:13 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-11-23 14:12:36 +0100
commit728648ad77ba3d96d8e61f95a748702df3d615bd (patch)
tree9091dbb05dadb9106ad047764c55ce4e6cb99bf5 /lib/private/helper.php
parent9caf4ffbfc2be077a1431149e77be485cd087081 (diff)
downloadnextcloud-server-728648ad77ba3d96d8e61f95a748702df3d615bd.tar.gz
nextcloud-server-728648ad77ba3d96d8e61f95a748702df3d615bd.zip
Replace new occurences of ini_get with IniWrapper methods
Diffstat (limited to 'lib/private/helper.php')
-rw-r--r--lib/private/helper.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/private/helper.php b/lib/private/helper.php
index 3bb81fba603..e9fe43a4b34 100644
--- a/lib/private/helper.php
+++ b/lib/private/helper.php
@@ -753,8 +753,9 @@ class OC_Helper {
* @return int PHP upload file size limit
*/
public static function uploadLimit() {
- $upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize'));
- $post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size'));
+ $ini = \OC::$server->getIniWrapper();
+ $upload_max_filesize = OCP\Util::computerFileSize($ini->get('upload_max_filesize'));
+ $post_max_size = OCP\Util::computerFileSize($ini->get('post_max_size'));
if ((int)$upload_max_filesize === 0 and (int)$post_max_size === 0) {
return INF;
} elseif ((int)$upload_max_filesize === 0 or (int)$post_max_size === 0) {
@@ -774,12 +775,13 @@ class OC_Helper {
if (!function_exists($function_name)) {
return false;
}
- $disabled = explode(',', ini_get('disable_functions'));
+ $ini = \OC::$server->getIniWrapper();
+ $disabled = explode(',', $ini->get('disable_functions'));
$disabled = array_map('trim', $disabled);
if (in_array($function_name, $disabled)) {
return false;
}
- $disabled = explode(',', ini_get('suhosin.executor.func.blacklist'));
+ $disabled = explode(',', $ini->get('suhosin.executor.func.blacklist'));
$disabled = array_map('trim', $disabled);
if (in_array($function_name, $disabled)) {
return false;