summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-10-05 02:08:53 +0000
committerDries Buytaert <dries@buytaert.net>2010-10-05 02:08:53 +0000
commitfd0e4caf2f6139d44b71d142fca7f07aac65a195 (patch)
treef37b8db34cc002c4ab3a45c8f633b19e1d6f33c5 /modules/system/system.module
parent8f43edf27ee1f78eaf4a7d615c5d0b50803b72e5 (diff)
downloadbrdo-fd0e4caf2f6139d44b71d142fca7f07aac65a195.tar.gz
brdo-fd0e4caf2f6139d44b71d142fca7f07aac65a195.tar.bz2
- Patch #612546 by dhthwy, jpmckinney, dww: remove the broken FileTransferFTPWrapper (file stream) class.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 810bd1673..bfbdc285c 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -1720,7 +1720,7 @@ function system_filetransfer_backends() {
$backends = array();
// This is the default, will be available on most systems.
- if (function_exists('ftp_connect') || ini_get('allow_url_fopen')) {
+ if (function_exists('ftp_connect')) {
$backends['ftp'] = array(
'title' => t('FTP'),
'class' => 'FileTransferFTP',