Various error fixes
This commit is contained in:
parent
ab6965cda6
commit
8b404a9465
@ -18,7 +18,7 @@
|
||||
*/
|
||||
class Query_Builder {
|
||||
|
||||
private $table,
|
||||
private $table;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
|
@ -50,10 +50,10 @@ class SSH {
|
||||
{
|
||||
if($auth_type === 'password')
|
||||
{
|
||||
ssh2_auth_password(&$this->session, $auth_params['user'], $auth_params['pass']);
|
||||
ssh2_auth_password($this->session, $auth_params['user'], $auth_params['pass']);
|
||||
}
|
||||
|
||||
$this->stream =& ssh2_tunnel(&$this->session, $host, $port);
|
||||
$this->stream =& ssh2_tunnel($this->session, $host, $port);
|
||||
|
||||
return $this->stream;
|
||||
}
|
||||
|
@ -378,7 +378,6 @@ SQL;
|
||||
$tables = array_diff($tables, $exclude);
|
||||
}
|
||||
|
||||
|
||||
$output_sql = '';
|
||||
|
||||
// Get the data for each object
|
||||
|
Loading…
Reference in New Issue
Block a user