summaryrefslogtreecommitdiffstats
path: root/lib/private/setup.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-03-16 09:56:31 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-03-16 09:56:31 +0100
commitb159c7f27404c639f06aac2d0188f0dd59575ff1 (patch)
tree06ac206cbd0220f26deb908d3eb4a1274cfc9bf5 /lib/private/setup.php
parentc1a3394f485b566d83300173c364506d27059a59 (diff)
parent5855108e9b413c69b95dcd68972cac7f4f01f4cc (diff)
downloadnextcloud-server-b159c7f27404c639f06aac2d0188f0dd59575ff1.tar.gz
nextcloud-server-b159c7f27404c639f06aac2d0188f0dd59575ff1.zip
Merge pull request #14848 from owncloud/kill-curl-fallback-master
drop any fallback code related to curl
Diffstat (limited to 'lib/private/setup.php')
-rw-r--r--lib/private/setup.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/private/setup.php b/lib/private/setup.php
index 44b6ad56cb8..830a6176caf 100644
--- a/lib/private/setup.php
+++ b/lib/private/setup.php
@@ -184,16 +184,6 @@ class Setup {
'hint' => $this->l10n->t('Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP.')
);
}
- if(!function_exists('curl_init') && PHP_INT_SIZE === 4) {
- $errors[] = array(
- 'error' => $this->l10n->t(
- 'It seems that this %s instance is running on a 32-bit PHP environment and cURL is not installed. ' .
- 'This will lead to problems with files over 4 GB and is highly discouraged.',
- $this->defaults->getName()
- ),
- 'hint' => $this->l10n->t('Please install the cURL extension and restart your webserver.')
- );
- }
return array(
'hasSQLite' => isset($databases['sqlite']),