diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-12 21:43:41 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-12 21:43:41 +0100 |
commit | 5855108e9b413c69b95dcd68972cac7f4f01f4cc (patch) | |
tree | 999b505632dfdb59a7b0bcb335417115ede9b3e4 /lib/private/files/storage/dav.php | |
parent | 68a7041348e592a8c8e35458a2355b0da2d99f79 (diff) | |
download | nextcloud-server-5855108e9b413c69b95dcd68972cac7f4f01f4cc.tar.gz nextcloud-server-5855108e9b413c69b95dcd68972cac7f4f01f4cc.zip |
drop any fallback code related to curl - refs https://github.com/owncloud/core/pull/14838#issuecomment-78586447
Diffstat (limited to 'lib/private/files/storage/dav.php')
-rw-r--r-- | lib/private/files/storage/dav.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/private/files/storage/dav.php b/lib/private/files/storage/dav.php index 7ca18262115..e0f24e0532d 100644 --- a/lib/private/files/storage/dav.php +++ b/lib/private/files/storage/dav.php @@ -512,11 +512,7 @@ class DAV extends \OC\Files\Storage\Common { * check if curl is installed */ public static function checkDependencies() { - if (function_exists('curl_init')) { - return true; - } else { - return array('curl'); - } + return true; } /** {@inheritdoc} */ |