summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/amazons3.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-03-12 21:43:41 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-03-12 21:43:41 +0100
commit5855108e9b413c69b95dcd68972cac7f4f01f4cc (patch)
tree999b505632dfdb59a7b0bcb335417115ede9b3e4 /apps/files_external/lib/amazons3.php
parent68a7041348e592a8c8e35458a2355b0da2d99f79 (diff)
downloadnextcloud-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 'apps/files_external/lib/amazons3.php')
-rw-r--r--apps/files_external/lib/amazons3.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/files_external/lib/amazons3.php b/apps/files_external/lib/amazons3.php
index 4d94e3561f8..73345d30893 100644
--- a/apps/files_external/lib/amazons3.php
+++ b/apps/files_external/lib/amazons3.php
@@ -627,11 +627,7 @@ class AmazonS3 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;
}
}