diff --git a/frontend/classes/class.sshconnector.php b/frontend/classes/class.sshconnector.php index 0b98cda..ff4dc6d 100644 --- a/frontend/classes/class.sshconnector.php +++ b/frontend/classes/class.sshconnector.php @@ -74,11 +74,11 @@ class SshConnector extends CPHPBaseClass if(empty($this->passphrase)) { - $result = ssh2_auth_pubkey_file($this->connection, $this->user, $this->pubkey, $this->key); + $result = @ssh2_auth_pubkey_file($this->connection, $this->user, $this->pubkey, $this->key); } else { - $result = ssh2_auth_pubkey_file($this->connection, $this->user, $this->pubkey, $this->key, $this->passphrase); + $result = @ssh2_auth_pubkey_file($this->connection, $this->user, $this->pubkey, $this->key, $this->passphrase); } if($result === true)