Updates: SSH2 Transport: Add a connection error when the SFTP subsystem cannot be initialized.

Fixes #33478


git-svn-id: https://develop.svn.wordpress.org/trunk@34739 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dion Hulse 2015-10-01 05:42:20 +00:00
parent bb7763c1d1
commit f99f06206e
1 changed files with 5 additions and 1 deletions

View File

@ -130,7 +130,11 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
}
}
$this->sftp_link = ssh2_sftp($this->link);
$this->sftp_link = ssh2_sftp( $this->link );
if ( ! $this->sftp_link ) {
$this->errors->add( 'connect', sprintf( __( 'Failed to initialize a SFTP subsystem session with the SSH2 Server %1$s:%2$s' ), $this->options['hostname'], $this->options['port'] ) );
return false;
}
return true;
}