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/setup.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/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']), |