Fix minor edge case
This commit is contained in:
parent
b3306772f9
commit
49aa73196f
@ -54,7 +54,7 @@ class Query_Builder {
|
|||||||
private $query_map;
|
private $query_map;
|
||||||
|
|
||||||
// Convenience property for connection management
|
// Convenience property for connection management
|
||||||
public $conn_name;
|
public $conn_name = "";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
@ -115,7 +115,11 @@ class Query_Builder {
|
|||||||
$this->db = new $dbtype($dsn);
|
$this->db = new $dbtype($dsn);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->conn_name = $params->name;
|
if (isset($params->name))
|
||||||
|
{
|
||||||
|
$this->conn_name = $params->name;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Make things just slightly shorter
|
// Make things just slightly shorter
|
||||||
$this->sql =& $this->db->sql;
|
$this->sql =& $this->db->sql;
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user