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

Fixes #33478

Built from https://develop.svn.wordpress.org/trunk@34739


git-svn-id: http://core.svn.wordpress.org/trunk@34703 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dion Hulse 2015-10-01 05:43:25 +00:00
parent d8aaf01b97
commit a4c41f6ee4
2 changed files with 6 additions and 2 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;
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-34738';
$wp_version = '4.4-alpha-34739';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.