[Pkg-owncloud-commits] [owncloud] 49/104: we shall explode on ', ' only

David Prévot taffit at moszumanska.debian.org
Sat Jan 18 13:33:39 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository owncloud.

commit 5e928fc988a3b45726c1bebafe905811b97725d1
Author: Thomas Müller <thomas.mueller at tmit.eu>
Date:   Tue Jan 7 14:53:02 2014 +0100

    we shall explode on ',' only
---
 lib/private/helper.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/private/helper.php b/lib/private/helper.php
index c82d3bd..73f953a 100644
--- a/lib/private/helper.php
+++ b/lib/private/helper.php
@@ -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;
 		}

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list