Tanus,
in the file MysqlConnection.php you missed some code in
the Close() method
public function Close()
{
mysql_close($this->connection);
}
you forgot to set the connection to null
public function Close()
{
mysql_close($this->connection);
$this->connection = null;
}
Logged In: YES
user_id=855855
Good point, I'll fix it next release :)