Correct function name, fix minor style issue.

This commit is contained in:
Timothy Warren 2012-02-21 11:38:45 -05:00
parent 09b0b1fbe3
commit 4d50456c9c
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ class Settings {
*/ */
function add_db($name, $params) function add_db($name, $params)
{ {
if(! isset($this->current->dbs->{$name})) if( ! isset($this->current->dbs->{$name}))
{ {
$this->current->dbs->{$name} = array(); $this->current->dbs->{$name} = array();
$this->current->dbs->{$name} = $params; $this->current->dbs->{$name} = $params;

View File

@ -219,7 +219,7 @@ SQL;
* *
* @return resource * @return resource
*/ */
function beingTransaction() function beginTransaction()
{ {
if($this->trans = ibase_trans($this->conn) !== null) if($this->trans = ibase_trans($this->conn) !== null)
{ {