]> source.dussan.org Git - nextcloud-server.git/commitdiff
we shall explode on ',' only
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 7 Jan 2014 13:53:02 +0000 (14:53 +0100)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 7 Jan 2014 13:53:02 +0000 (14:53 +0100)
lib/private/helper.php

index 4fe3097af265f970200eb4b2a2549d9bc4447e32..a06932a11f98d4286e0efe5a7e1b54ce3c0a8c67 100644 (file)
@@ -858,7 +858,7 @@ class OC_Helper {
                if (!function_exists($function_name)) {
                        return false;
                }
-               $disabled = explode(', ', ini_get('disable_functions'));
+               $disabled = explode(',', ini_get('disable_functions'));
                if (in_array($function_name, $disabled)) {
                        return false;
                }