From 4d50456c9cb2ae8d81c11b40bcd8cab9aeeab0ac Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Tue, 21 Feb 2012 11:38:45 -0500 Subject: [PATCH] Correct function name, fix minor style issue. --- src/common/settings.php | 2 +- src/databases/firebird.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) {