diff --git a/src/common/settings.php b/src/common/settings.php index 8fa2455..6ff977a 100644 --- a/src/common/settings.php +++ b/src/common/settings.php @@ -99,7 +99,7 @@ class Settings { */ 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} = $params; diff --git a/src/databases/firebird.php b/src/databases/firebird.php index d332e36..92b18a7 100644 --- a/src/databases/firebird.php +++ b/src/databases/firebird.php @@ -219,7 +219,7 @@ SQL; * * @return resource */ - function beingTransaction() + function beginTransaction() { if($this->trans = ibase_trans($this->conn) !== null) {