diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-10-05 02:08:53 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-10-05 02:08:53 +0000 |
commit | fd0e4caf2f6139d44b71d142fca7f07aac65a195 (patch) | |
tree | f37b8db34cc002c4ab3a45c8f633b19e1d6f33c5 /modules/system/system.module | |
parent | 8f43edf27ee1f78eaf4a7d615c5d0b50803b72e5 (diff) | |
download | brdo-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.module | 2 |
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', |