diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-16 09:56:31 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-16 09:56:31 +0100 |
commit | b159c7f27404c639f06aac2d0188f0dd59575ff1 (patch) | |
tree | 06ac206cbd0220f26deb908d3eb4a1274cfc9bf5 /lib/private/setup.php | |
parent | c1a3394f485b566d83300173c364506d27059a59 (diff) | |
parent | 5855108e9b413c69b95dcd68972cac7f4f01f4cc (diff) | |
download | nextcloud-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.php | 10 |
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']), |