Various error fixes

This commit is contained in:
Timothy Warren 2012-03-01 08:10:13 -05:00
parent ab6965cda6
commit 8b404a9465
3 changed files with 3 additions and 4 deletions

View File

@ -18,7 +18,7 @@
*/
class Query_Builder {
private $table,
private $table;
/**
* Constructor

View File

@ -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;
}

View File

@ -378,7 +378,6 @@ SQL;
$tables = array_diff($tables, $exclude);
}
$output_sql = '';
// Get the data for each object