Roll-back of #395472 follow-up. Seeing if this causes testing bot to quit spazzing out.
parent
d1ba6c419c
commit
48d3eff243
|
@ -15,7 +15,7 @@ abstract class FileTransferFTP extends FileTransfer {
|
|||
/**
|
||||
* Connection class using the FTP URL wrapper.
|
||||
*/
|
||||
class FileTransferFTPWrapper extends FileTransferFTP {
|
||||
class FileTransferFTPWrapper extends FileTransfer {
|
||||
function connect() {
|
||||
$this->connection = 'ftp://' . urlencode($this->username) . ':' . urlencode($this->password) . '@' . $this->hostname . ':' . $this->port . '/';
|
||||
if (!is_dir($this->connection)) {
|
||||
|
@ -69,7 +69,7 @@ class FileTransferFTPWrapper extends FileTransferFTP {
|
|||
}
|
||||
}
|
||||
|
||||
class FileTransferFTPExtension extends FileTransferFTP {
|
||||
class FileTransferFTPExtension extends FileTransfer {
|
||||
function connect() {
|
||||
$this->connection = ftp_connect($this->hostname, $this->port);
|
||||
|
||||
|
|
Loading…
Reference in New Issue